Added and fixed checkes related to "$@"/$*

This commit is contained in:
Vidar Holen
2012-11-05 01:08:00 -08:00
parent 98f5c48d47
commit 7bc732b2a2
6 changed files with 29 additions and 2 deletions

1
goodcase/forargs Normal file
View File

@@ -0,0 +1 @@
for f in "$@"; do echo "$f"; done

1
goodcase/fornoin Normal file
View File

@@ -0,0 +1 @@
for f; do echo "$f"; done

3
goodcase/heredoc Normal file
View File

@@ -0,0 +1,3 @@
cat << FOO
test
FOO