Skip to content

Instantly share code, notes, and snippets.

@NuckChorris
Last active December 20, 2015 12:59
Show Gist options
  • Select an option

  • Save NuckChorris/6135172 to your computer and use it in GitHub Desktop.

Select an option

Save NuckChorris/6135172 to your computer and use it in GitHub Desktop.
TARGET="cocks.png"
find . -type f -size +30M -name '*.gif' -print0 | while read -d $'\0' -r file; do
rm -f $file
ln -s $TARGET $file
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment