Skip to content

Instantly share code, notes, and snippets.

@hosszukalman
Created September 17, 2019 07:57
Show Gist options
  • Save hosszukalman/a50284716a34cdc56e3cb5df799488ce to your computer and use it in GitHub Desktop.
Save hosszukalman/a50284716a34cdc56e3cb5df799488ce to your computer and use it in GitHub Desktop.
Copy and rename files based on regex
#!/bin/bash
find . -type f | perl -pe 'print $_; s/-english.html/-romanian.html/' | xargs -n2 cp
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment