pfetch: Add --version. Closes #47

This commit is contained in:
Dylan Araps 2020-03-12 00:42:45 +02:00
parent 675814f33e
commit 7503fcc37b
No known key found for this signature in database
GPG Key ID: 46D62DD9F1DE636E

5
pfetch
View File

@ -1455,6 +1455,11 @@ get_ascii() {
} }
main() { main() {
[ "$1" = --version ] && {
printf 'pfetch 0.7.0\n'
exit
}
# Hide 'stderr' unless the first argument is '-v'. This saves # Hide 'stderr' unless the first argument is '-v'. This saves
# polluting the script with '2>/dev/null'. # polluting the script with '2>/dev/null'.
[ "$1" = -v ] || exec 2>/dev/null [ "$1" = -v ] || exec 2>/dev/null