init
This commit is contained in:
1
Shell/shell01v5/ex01/print_groups.sh
Normal file
1
Shell/shell01v5/ex01/print_groups.sh
Normal file
@ -0,0 +1 @@
|
||||
id -Gn $FT_USER | tr " " "," | tr -d "\n"
|
2
Shell/shell01v5/ex02/find_sh.sh
Executable file
2
Shell/shell01v5/ex02/find_sh.sh
Executable file
@ -0,0 +1,2 @@
|
||||
#!/bin/sh
|
||||
basename -s .sh $(find . -type f -name "*.sh")
|
1
Shell/shell01v5/ex03/count_files.sh
Executable file
1
Shell/shell01v5/ex03/count_files.sh
Executable file
@ -0,0 +1 @@
|
||||
find . -type f,d | wc -l
|
1
Shell/shell01v5/ex04/MAC.sh
Normal file
1
Shell/shell01v5/ex04/MAC.sh
Normal file
@ -0,0 +1 @@
|
||||
ifconfig | grep ether | awk '{print $2}'
|
1
Shell/shell01v5/ex05/"\?$*'MaRViN'*$?\"
Normal file
1
Shell/shell01v5/ex05/"\?$*'MaRViN'*$?\"
Normal file
@ -0,0 +1 @@
|
||||
42
|
1
Shell/shell01v5/ex06/skip.sh
Normal file
1
Shell/shell01v5/ex06/skip.sh
Normal file
@ -0,0 +1 @@
|
||||
ls -l | awk 'NR%2==1'
|
Reference in New Issue
Block a user