mirror of
https://github.com/eddyem/lectures.git
synced 2026-03-20 08:41:01 +03:00
add 3 lectures for SFedU
This commit is contained in:
12
Komp_obr_SFedU/Materials4Pract/01/args
Executable file
12
Komp_obr_SFedU/Materials4Pract/01/args
Executable file
@@ -0,0 +1,12 @@
|
||||
#!/bin/bash
|
||||
|
||||
function chkargs(){
|
||||
echo "you give $# arguments:"
|
||||
for arg in "$@"; do
|
||||
echo -e "\t$arg"
|
||||
done
|
||||
}
|
||||
|
||||
chkargs "$@"
|
||||
chkargs "$*"
|
||||
chkargs $*
|
||||
Reference in New Issue
Block a user