Last active
July 22, 2016 13:16
-
-
Save fvigotti/384fce7ec5068ee7052f495bc3af8648 to your computer and use it in GitHub Desktop.
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
#!/usr/bin/env bash | |
args=("$@") | |
ELEMENTS=${#args[@]} | |
for (( i=0;i<$ELEMENTS;i++)); do | |
echo '['$i']'${args[${i}]}'[/'$i']' | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment