-
-
Save jybaek/48515a69f998301acd54 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/sh | |
echo "=================" | |
echo "\$@ section" | |
echo "=================" | |
for param in "$@" | |
do | |
echo $param, | |
done | |
echo "=================" | |
echo "\$* section" | |
echo "=================" | |
for param in "$*" | |
do | |
echo $param, | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment