Created
December 12, 2013 04:15
-
-
Save eschie/7923108 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
tail -n +2 test.css > test.css | |
# remove up to the second line (remove first line) of a file and output to new file | |
for file in *.css; do tail -n 7 "$file" > "${file%.css}".new.css; done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment