master #1

Merged
olivier merged 22 commits from vincent/notebook:master into master 2021-04-13 13:15:00 +00:00
Showing only changes of commit 0123247969 - Show all commits

View File

@ -56,3 +56,14 @@ fi
|-r -w -x | test permition|
|$a -nt $b| $a plus récent|
|$a -ot $b| $a plus vieux|
## Supprimer les Dossiers contenant 1 élement
```
IFS=$'\n';for i in $(ls) do  ✔  10022  18:29:32 
if [ $(ls $i|wc|awk '{print $1}') = 1 ]
then
rm -r $i
fi
```