Find duplicates in a folder and convert them to symlinks
Hi, Duplicate files waste precious space on your computer’s hard drive. Here a terminal approach with a script to vonvert them to symlinks: first install the dependencies: Code: sudo apt-get install rdfind symlinks Now create the blxremoveduplicates script: Code: #!/bin/bash if [[ -d „$1“ && ! -L „$1“ ]] ; Read More