Created
July 2, 2021 20:58
-
-
Save rothgar/7d9d77b88162f21654cd6b098b050a5b to your computer and use it in GitHub Desktop.
Infinidash command
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# put this in $HOME/.aws/cli/alias | |
[toplevel] | |
infinidash = !f() { | |
if [ -z "$1" ]; then | |
cat $HOME/.aws/help.txt | |
elif test "$1" = "deploy"; then | |
curl -s -L https://raw.githubusercontent.com/keroserene/rickrollrc/master/roll.sh | bash | |
elif test "$1" = "help"; then | |
cat $HOME/.aws/help.txt | |
else | |
echo "Command not found. Try help" | |
fi | |
}; f |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# put this in $HOME/.aws/help.txt | |
usage: aws [options] <command> <subcommand> [<subcommand> ...] [parameters] | |
To see help text, you can run: | |
aws help | |
aws <command> help | |
aws <command> <subcommand> help | |
aws: error: the following arguments are required: deploy |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment