scripts_grundkurs/Misc/shifty_stuff.sh

13 lines
113 B
Bash
Executable File

#!/bin/bash
# Jack-Benny Persson
# LX13
# Testing out shift
while [ -n "$1" ]; do
echo $1
shift
done
exit 0