You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
167 B
11 lines
167 B
4 months ago
|
#!/bin/sh
|
||
|
#
|
||
|
# usage: undos <file>
|
||
|
#
|
||
|
# strips CRs from a file - useful when moving DOS-created files
|
||
|
# onto UN*X machines
|
||
|
|
||
|
cat $1 | tr -d "\r" > $1.tmp
|
||
|
mv $1.tmp $1
|
||
|
|