Files
G4G0-1/Semester 2/Computer Systems Internals & Linux/Week 2/script4.sh

8 lines
97 B
Bash

#!/bin/bash
num=1;
while [ $# -gt 0 ]; do
echo argument $num is \"$1\".
shift
let num++
done