Started övning 4, labb 6

This commit is contained in:
2013-12-19 15:29:29 +01:00
parent 71534704f2
commit b446f85659
7 changed files with 171 additions and 0 deletions

13
Labb6/test_args.sh Executable file
View File

@@ -0,0 +1,13 @@
#!/bin/bash
# Jack-Benny Persson
# LX13
# Labb 6, testing some arguments
# Echo all arguments
echo $*
# Echo the total number of arguments
echo $#
exit 0