Adding lyrics to installer

This commit is contained in:
Alex Epstein 2017-08-20 13:44:05 -04:00
parent 5c12ac0bd3
commit b02ae720ae
4 changed files with 62 additions and 2 deletions

View File

@ -280,6 +280,43 @@ Example: geo \-a 8\.8\.8\.8 \-o city,zip,isp
.
.IP "" 0
.
.SS "Lyrics"
Description: Fetch lyrics for a certain song\.
.
.P
Usage: lyrics [flags] or tool [\-a] [arg] [\-s] [arg]
.
.IP "\(bu" 4
\-a Artist of the song to fetch lyrics for
.
.IP "\(bu" 4
\-s Song of the artist to fetch lyrics for
.
.IP "\(bu" 4
\-f Export the lyrics to file rather than outputting to stdout
.
.IP "\(bu" 4
\-u Update Bash\-Snippet Tools
.
.IP "\(bu" 4
\-h Show the help
.
.IP "\(bu" 4
\-v Get the tool version
.
.IP "" 0
.
.P
Examples:
.
.IP "\(bu" 4
lyrics \-a logic \-s run it
.
.IP "\(bu" 4
lyrics \-a logic \-s run it \-f ~/runItLyrics\.txt
.
.IP "" 0
.
.SS "Movies"
Description: Provides relevant information about a certain movie\.
.

View File

@ -194,6 +194,29 @@ Example: geo -a 8.8.8.8 -o city,zip,isp
* -u Updates Bash-Snippets
### Lyrics
Description: Fetch lyrics for a certain song.
Usage: lyrics [flags] or tool [-a] [arg] [-s] [arg]
* -a Artist of the song to fetch lyrics for
* -s Song of the artist to fetch lyrics for
* -f Export the lyrics to file rather than outputting to stdout
* -u Update Bash-Snippet Tools
* -h Show the help
* -v Get the tool version
Examples:
* lyrics -a logic -s run it
* lyrics -a logic -s run it -f ~/runItLyrics.txt
### Movies
Description: Provides relevant information about a certain movie.

View File

@ -1,7 +1,7 @@
#!/usr/bin/env bash
# Author: Alexander Epstein https://github.com/alexanderepstein
currentVersion="1.18.1"
declare -a tools=(cheat cloudup crypt cryptocurrency currency geo movies newton qrify short siteciphers stocks taste todo transfer weather ytview)
declare -a tools=(cheat cloudup crypt cryptocurrency currency geo lyrics movies newton qrify short siteciphers stocks taste todo transfer weather ytview)
declare -a extraLinuxTools=(maps)
declare -a extraDarwinTools
usedGithubInstallMethod="0"

View File

@ -1,6 +1,6 @@
#!/usr/bin/env bash
# Author: Alexander Epstein https://github.com/alexanderepstein
declare -a tools=(cheat cloudup crypt cryptocurrency currency geo movies newton qrify short siteciphers stocks taste todo transfer weather ytview)
declare -a tools=(cheat cloudup crypt cryptocurrency currency geo lyrics movies newton qrify short siteciphers stocks taste todo transfer weather ytview)
all="1"
askUninstall()