diff --git a/notes/unix.md b/notes/unix.md index 19d3730..ac849e9 100644 --- a/notes/unix.md +++ b/notes/unix.md @@ -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