This commit is contained in:
lclerel- lclerel-
2026-03-03 13:28:36 +01:00
commit ffcf786545
3 changed files with 3 additions and 0 deletions

1
ex0/find_sh.sh Executable file
View File

@@ -0,0 +1 @@
find . -name "*.sh" | sed -E 's/(\.sh)$//' | cut -c2-

1
ex1/clean Executable file
View File

@@ -0,0 +1 @@
find . -type f -name "*~" -print -delete -o -name "#*#" -print -delete

1
ex2/count_files.sh Executable file
View File

@@ -0,0 +1 @@
find -type f | wc -l