14 lines
158 B
Bash
Executable File

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