Skip to content

Instantly share code, notes, and snippets.

@AgentCoop
Created January 13, 2014 21:22
Show Gist options
  • Save AgentCoop/8408415 to your computer and use it in GitHub Desktop.
Save AgentCoop/8408415 to your computer and use it in GitHub Desktop.
# Remove the leading capital C letter from PHP filenames
for filename in $(find -type f -name "C*.php");
do
new=$(echo $filename | sed -r 's/C([A-Z].*\.php)/\1/');
echo $new;
git mv $filename $new;
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment