Add history note

This commit is contained in:
Yax 2022-11-06 11:20:36 +01:00
parent 298db96ed5
commit 4ca9b1dc94

View file

@ -60,8 +60,11 @@ Lister les plus gros fichiers ou répertoires
du format HEIF (Apple) vers JPEG
```
for file in *.heic; do heif-convert $file ${file/%.heic/.jpg}; done
```
for file in *.heic; do heif-convert $file ${file/%.heic/.jpg}; done
# Historique
Vider l'historique de Bash (source [StackOverflow](https://askubuntu.com/questions/191999/how-to-clear-bash-history-completely))
cat /dev/null > ~/.bash_history && history -c && exit