Mercurial > hg > toybox
annotate wrappers/dos2unix @ 411:7da386057101
Add three commands that can be done as simple shell scripts (one sed is in, anyway), and don't need to be implemented in C.
author | Rob Landley <rob@landley.net> |
---|---|
date | Sun, 22 Jan 2012 20:33:15 -0600 |
parents | |
children |
rev | line source |
---|---|
411
7da386057101
Add three commands that can be done as simple shell scripts (one sed is in, anyway), and don't need to be implemented in C.
Rob Landley <rob@landley.net>
parents:
diff
changeset
|
1 #!/bin/sh |
7da386057101
Add three commands that can be done as simple shell scripts (one sed is in, anyway), and don't need to be implemented in C.
Rob Landley <rob@landley.net>
parents:
diff
changeset
|
2 #HELP usage: dos2unix [FILE...]\n\nRemove DOS newlines |
7da386057101
Add three commands that can be done as simple shell scripts (one sed is in, anyway), and don't need to be implemented in C.
Rob Landley <rob@landley.net>
parents:
diff
changeset
|
3 |
7da386057101
Add three commands that can be done as simple shell scripts (one sed is in, anyway), and don't need to be implemented in C.
Rob Landley <rob@landley.net>
parents:
diff
changeset
|
4 [ $# -ne 0 ] && DASH_I=-i |
7da386057101
Add three commands that can be done as simple shell scripts (one sed is in, anyway), and don't need to be implemented in C.
Rob Landley <rob@landley.net>
parents:
diff
changeset
|
5 sed $DASH_I -e 's/\r$//' "$@" |