mirror of
https://github.com/eddyem/lectures.git
synced 2026-03-21 17:20:57 +03:00
add 3 lectures for SFedU
This commit is contained in:
11
Komp_obr_SFedU/Materials4Pract/01/case
Executable file
11
Komp_obr_SFedU/Materials4Pract/01/case
Executable file
@@ -0,0 +1,11 @@
|
||||
#!/bin/bash
|
||||
|
||||
while [ -n "$1" ];do
|
||||
case "$1" in
|
||||
-a) echo "Found the -a option" ;;
|
||||
-b) echo "Found the -b option" ;;
|
||||
-c) echo "Found the -c option" ;;
|
||||
*) echo "$1 is not an option" ;;
|
||||
esac
|
||||
shift
|
||||
done
|
||||
Reference in New Issue
Block a user