first commit
This commit is contained in:
2
finish/shell01/ex01/print_groups.sh
Normal file
2
finish/shell01/ex01/print_groups.sh
Normal file
@ -0,0 +1,2 @@
|
||||
#!/bin/sh
|
||||
id -nG $FT_USER | tr ' ' ',' | tr -d '\n'
|
2
finish/shell01/ex02/find_sh.sh
Normal file
2
finish/shell01/ex02/find_sh.sh
Normal file
@ -0,0 +1,2 @@
|
||||
#!/bin/sh
|
||||
find -type f -name "*.sh" -exec basename {} .sh \;
|
2
finish/shell01/ex03/count_files.sh
Normal file
2
finish/shell01/ex03/count_files.sh
Normal file
@ -0,0 +1,2 @@
|
||||
#!/bin/sh
|
||||
find . -type f,d | wc -l
|
1
finish/shell01/ex04/MAC.sh
Normal file
1
finish/shell01/ex04/MAC.sh
Normal file
@ -0,0 +1 @@
|
||||
ifconfig | grep ether | awk '{print $2;}'
|
1
finish/shell01/ex05/"\?$*'MaRViN'*$?\"
Normal file
1
finish/shell01/ex05/"\?$*'MaRViN'*$?\"
Normal file
@ -0,0 +1 @@
|
||||
42
|
1
finish/shell01/ex06/skip.sh
Normal file
1
finish/shell01/ex06/skip.sh
Normal file
@ -0,0 +1 @@
|
||||
ls -l | sed -n {1~2p}
|
Reference in New Issue
Block a user