Skip to content

Instantly share code, notes, and snippets.

@dougnukem
Created January 24, 2014 22:31
Show Gist options
  • Save dougnukem/8608131 to your computer and use it in GitHub Desktop.
Save dougnukem/8608131 to your computer and use it in GitHub Desktop.
cleanup actionscript line endings from Flash Professional CS6
#!/bin/bash
CARRIAGE_RETURN=$'\r'
LINE_FEED=$'\n'
find . -name "*.as" | xargs grep -l $CARRIAGE_RETURN | xargs -n 1 sed -i "" 's/'$CARRIAGE_RETURN'/\'$'\n/g'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment