Created test-script for args and fixed typo i lab7e2 (thx to Fredrik who pointed it out)
This commit is contained in:
33
Misc/test_args.sh
Executable file
33
Misc/test_args.sh
Executable file
@@ -0,0 +1,33 @@
|
||||
#!/bin/bash
|
||||
|
||||
# Jack-Benny Persson
|
||||
# LX13
|
||||
# Just testing out $@ and $*
|
||||
|
||||
Count=1
|
||||
for param in "$*"; do
|
||||
echo "\$* Parameter #$Count = $param"
|
||||
((Count++))
|
||||
done
|
||||
|
||||
Count=1
|
||||
for param in "$@"; do
|
||||
echo "\$@ Parameter #$Count = $param"
|
||||
((Count++))
|
||||
done
|
||||
|
||||
echo ""
|
||||
echo "Testing with an array"
|
||||
echo "---------------------"
|
||||
|
||||
Count=1
|
||||
Test=($@)
|
||||
|
||||
Count=0
|
||||
while [ $Count -lt ${#Test[@]} ]; do
|
||||
echo "Index #$Count is ${Test[$Count]}"
|
||||
((Count++))
|
||||
done
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user