Skip to content

Instantly share code, notes, and snippets.

@billerby
Created November 11, 2013 09:32
Show Gist options
  • Save billerby/7410496 to your computer and use it in GitHub Desktop.
Save billerby/7410496 to your computer and use it in GitHub Desktop.
Copy nb_NO.properties files to a new set of no.properties files since some browsers seems not to support bokmål
#!/bin/bash
for file in $(find . -name "*nb_NO.properties*")
do
cp $file `echo $file | sed s/_nb_NO.properties$/_no.properties/`
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment