Created
July 16, 2022 00:51
-
-
Save thehandsomezebra/f21326fe22a30df24b848783de31afdb to your computer and use it in GitHub Desktop.
Testing bash with echoing things...
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
echo | |
echo "# arguments called with ----> ${@} " | |
echo "# \$1 ----------------------> $1 " | |
echo "# \$2 ----------------------> $2 " | |
echo "# path to me ---------------> ${0} " | |
echo "# parent path --------------> ${0%/*} " | |
echo "# my name ------------------> ${0##*/} " | |
echo |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment