From 4ca9b1dc94319d251efd1b50f3fa76edff5e3de0 Mon Sep 17 00:00:00 2001 From: Yax <1949284+kianby@users.noreply.github.com> Date: Sun, 6 Nov 2022 11:20:36 +0100 Subject: [PATCH] Add history note --- notes/unix.md | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) 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