Created
March 15, 2022 05:17
-
-
Save lebeerman/45b4c60c79963940601b52d41d47abd5 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
#!/bin/bash | |
# Note: You may need to chmod +x | |
echo "The name of this program is $0" | |
echo "The first arg passed in is: $1" | |
echo "The second arg passed in is: $2" | |
echo "The third arg passed in is: $3" | |
echo "All params: $*" | |
echo | |
echo "Done with $0" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment