↧
Answer by Ravexina for @command -v gpg why is the version flag before the...
The -v is an argument for command builtin not for the gpg, it's not looking for "gpg" version, it's looking to see if any command named "gpg" exist. From help command: -v print a description of COMMAND...
View Article@command -v gpg why is the version flag before the command?
verify: @command -v gpg 2>/dev/null || { echo "Cound not find gpg. Aborting."; exit 1; } I saw the following command in a Makefile. I understand that it does the following: verify is called before...
View Article