6255 liens privés
A new way to see and navigate directory trees : https://dystroy.org/broot - Canop/broot
Une alternative à tree
Un script shell pour gérer automatiquement mes téléchargements d'ebooks et les dispatcher du dossier de base vers les sous dossiers correspondants. Et à la fin ça delete les duplicates
Requirements : fdupes & inotifywait
Oui sinon ça devient vite cata pour s'y retrouver.
find which process is using a deleted file
lsof +L1
ok this is cool but even if you deleted the file, the process still owns a handler to this file, and in some situations we don't want to kill the process. Here's a workaround using deletion of the file handler :
go to the process folder
cd /proc/PID/fd
ls -l |grep deleted
take note of the file handler ID. e.g here below the file handler is 1.
l-wx------ 1 hudson devel 64 Feb 7 11:48 1 -> /crucible/data/current/var/log/fisheye.out (deleted)
reclaim the space
1
parfait pour mon usage, et pour les maniaques de l'organisation qui veulent gagner du temps et retrouver leurs repères en passant/migrant d'une machine à l'autre :)