From d9dd35567ee3c80612a5f799bdf00c5068fb2f5e Mon Sep 17 00:00:00 2001 From: ivuorinen Date: Tue, 26 Mar 2024 00:13:01 +0000 Subject: [PATCH] Update cheatsheets --- tldr/fclones | 37 +++++++++++++++++++++++++++++++++++++ tldr/linux/torsocks | 17 +++++++++++++++++ 2 files changed, 54 insertions(+) create mode 100644 tldr/fclones create mode 100644 tldr/linux/torsocks diff --git a/tldr/fclones b/tldr/fclones new file mode 100644 index 00000000..ee25b9e5 --- /dev/null +++ b/tldr/fclones @@ -0,0 +1,37 @@ +--- +syntax: markdown +tags: [tldr, common] +source: https://github.com/tldr-pages/tldr.git +--- +# fclones + +> Efficient duplicate file finder and remover. +> More information: . + +- Search for duplicate files in the current directory: + +`fclones group .` + +- Search multiple directories for duplicate files and cache the results: + +`fclones group --cache {{path/to/directory1 path/to/directory2}}` + +- Search only the specified directory for duplicate files, skipping subdirectories and save the results into a file: + +`fclones group {{path/to/directory}} --depth 1 > {{path/to/file.txt}}` + +- Move the duplicate files in a TXT file to a different directory: + +`fclones move {{path/to/target_directory}} < {{path/to/file.txt}}` + +- Perform a dry run for soft links in a TXT file without actually linking: + +`fclones link --soft < {{path/to/file.txt}} --dry-run 2 > /dev/null` + +- Delete the newest duplicates from the current directory without storing them in a file: + +`fclones group . | fclones remove --priority newest` + +- Preprocess JPEG files in the current directory by using an external command to strip their EXIF data before matching for duplicates: + +`fclones group . --name '*.jpg' -i --transform 'exiv2 -d a $IN' --in-place` diff --git a/tldr/linux/torsocks b/tldr/linux/torsocks new file mode 100644 index 00000000..77d636ec --- /dev/null +++ b/tldr/linux/torsocks @@ -0,0 +1,17 @@ +--- +syntax: markdown +tags: [tldr, linux] +source: https://github.com/tldr-pages/tldr.git +--- +# torsocks + +> Use any application through the Tor network. +> More information: . + +- Run a command using Tor: + +`torsocks {{command}}` + +- Enable or disable Tor in this shell: + +`. torsocks {{on|off}}`