Exos
This commit is contained in:
1
ex0/find_sh.sh
Executable file
1
ex0/find_sh.sh
Executable file
@@ -0,0 +1 @@
|
||||
find . -name "*.sh" | sed -E 's/(\.sh)$//' | cut -c2-
|
||||
1
ex1/clean
Executable file
1
ex1/clean
Executable file
@@ -0,0 +1 @@
|
||||
find . -type f -name "*~" -print -delete -o -name "#*#" -print -delete
|
||||
1
ex2/count_files.sh
Executable file
1
ex2/count_files.sh
Executable file
@@ -0,0 +1 @@
|
||||
find -type f | wc -l
|
||||
Reference in New Issue
Block a user