Skip to content

Instantly share code, notes, and snippets.

@icaoberg
Created January 22, 2020 07:03
Show Gist options
  • Save icaoberg/781d03e10f55d8ded8ad5259b56b9a3c to your computer and use it in GitHub Desktop.
Save icaoberg/781d03e10f55d8ded8ad5259b56b9a3c to your computer and use it in GitHub Desktop.
[UTILITIES] Random rename
#!/bin/bash
shopt -s nullglob
FILE=$1
if [ -f $FILE ]; then
mv -v "$FILE" $(uuidgen).${FILE##*.}
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment