Skip to content
This repository has been archived by the owner on Jun 15, 2018. It is now read-only.

Commit

Permalink
Keep carriage return characters before EOL
Browse files Browse the repository at this point in the history
  • Loading branch information
l0b0 committed Apr 11, 2012
1 parent 59a9483 commit 0c3de26
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .bash_history
Expand Up @@ -236,7 +236,7 @@ find . -print0 | while read -r -d ''; do printf %q "$REPLY"; printf '\n'; done
find . -printf x | wc -c
find /proc -regex '/proc/[0-9].*' -prune -o -print # not process number
find . -regex '.*\.\(orig$\|\(BACKUP\|BASE\|LOCAL\|REMOTE\)\..*\)' -delete # remove git rebase temp files
find . \( -type d -regex '^.*/\.\(git\|svn\)$' -prune -false \) -o -type f -exec sed -i -e 's/[ \t]\+$//;$a\' {} \; # whitespace EOL EOF
find . \( -type d -regex '^.*/\.\(git\|svn\)$' -prune -false \) -o -type f -exec sed -i -e 's/[ \t]\+\(\r\?\)$/\1/;$a\' {} \+ # whitespace EOL EOF
find . -type f -name file | exclude_vcs
find -version
firefox -profilemanager
Expand Down

0 comments on commit 0c3de26

Please sign in to comment.