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