mirror of
https://github.com/eddyem/lectures.git
synced 2025-12-06 02:35:18 +03:00
13 lines
150 B
Bash
13 lines
150 B
Bash
#!/bin/bash
|
|
|
|
function chkargs(){
|
|
echo "you give $# arguments:"
|
|
for arg in "$@"; do
|
|
echo -e "\t$arg"
|
|
done
|
|
}
|
|
|
|
chkargs "$@"
|
|
chkargs "$*"
|
|
chkargs $*
|