Skip to content

Instantly share code, notes, and snippets.

@trwatson
Last active November 22, 2017 19:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save trwatson/78eba299c6da42275bc4f01387f83ca4 to your computer and use it in GitHub Desktop.
Save trwatson/78eba299c6da42275bc4f01387f83ca4 to your computer and use it in GitHub Desktop.
Replace Ubuntu Color with Blue
#!/bin/bash
#run as root
fileList=$(grep -nir "f07746" /usr/ | awk -F: '{print $1}' | sort -u)
for file in "$fileList";
do
sed -i 's/f07746/023c88/g' $file;
sed -i 's/F07746/023c88/g' $file;
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment