echo additional info on start

This commit is contained in:
Joe 2019-12-26 16:53:58 -06:00
parent 291c51b0b2
commit 0d18d22e86
Signed by: joe
GPG Key ID: 8595A3F8F2CE1B74
1 changed files with 6 additions and 3 deletions

View File

@ -1,5 +1,8 @@
#!/bin/bash
name="Remote Media Killer"
version=0.0.7
author="Joe"
license="GNU GPLv3"
UserInput() {
read -r -p "$(echo -e 'Domain:')" domain
@ -27,12 +30,12 @@ DomainCheck() {
fi
}
EchoVersion() {
echo $version
EchoInfo() {
echo "$name $version - Licensed $license by $author"
}
main() {
EchoVersion;
EchoInfo;
UserInput;
DomainCheck "$domain";
UnixTimeMs "$time";