Skip to content

Instantly share code, notes, and snippets.

@dbiesecke
Last active September 8, 2024 14:49
Show Gist options
  • Save dbiesecke/7013bfdf63c66530d3b06e3065f4a442 to your computer and use it in GitHub Desktop.
Save dbiesecke/7013bfdf63c66530d3b06e3065f4a442 to your computer and use it in GitHub Desktop.
JQ / Bash - Cleanup Movies dir - removes double movies from dir

JQ / Bash - Cleanup Movies dir - removes double movies from dir

  • search for more than 1gb files in a dir & remove the file with less size
for i in *;do (cd "$i" &&  MYVAL=$(rclone lsjson "." --min-size 1G |\
jq -r "select((. | length) > 1) | .[1].Path") && echo "$i/$MYVAL" && \
( test -f "$MYVAL" && rclone delete "$PWD/$MYVAL") );done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment