dos2unix - a simple filter to convert text files in DOS format to UNIX/LINUX end of line conventions by removing the carriage return character(\r). This will leave the newline character(\n) which unix expects.
Usgae:
dos2unix [file1] : Remove DOS End of Line (EOL) char from file1, write back to file1
dos2unix [file1] [file2] : Remove DOS EOL char from file1, write to file2
dos2unix -d [directory] : Remove DOS EOL char from all files in directory
This file contains 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
#!/bin/ksh | |
# | |
# dos2unix -- a simple filter to convert text files in DOS format to | |
# UNIX end of line conventions by removing the | |
# carriage return character. This will leave the | |
# newline character which unix expects. | |
# | |
# | |
#set -xv | |
function filter | |
{ | |
tr -d '\r' | |
} | |
function Usage | |
{ | |
{ | |
print "Usage: dos2unix" | |
print " --> Remove DOS EOL char from stdin, write to stdout" | |
print " dos2unix [file1]" | |
print " --> Remove DOS EOL char from file1, write back to file1" | |
print " dos2unix [file1] [file2]" | |
print " --> Remove DOS EOL char from file1, write to file2" | |
print " dos2unix -d [directory]" | |
print " --> Remove DOS EOL char from all files in directory" | |
} 1>&2 | |
} | |
tempFile=/tmp/$$.txt | |
touch ${tempFile} | |
case $# in | |
0) | |
filter | |
;; | |
1) | |
if [[ $1 = "-?" || $1 = "-h" || $1 = "-H" ]];then | |
Usage $0 | |
else | |
filter < $1 > ${tempFile} | |
cp ${tempFile} $1 | |
fi | |
;; | |
2) | |
if [[ $1 = "-d" ]];then | |
for i in ${2}/*; do | |
filter < ${i} > ${tempFile} | |
cp ${tempFile} ${i} | |
done | |
else | |
filter < $1 > ${tempFile} | |
cp ${tempFile} $2 | |
fi | |
;; | |
*) | |
Usage $0 | |
;; | |
esac | |
rm -f ${tempFile} > /dev/null 2>&1 | |
exit |
https://www.facebook.com/datastage4you
https://twitter.com/datagenx
https://plus.google.com/+AtulSingh0/posts
https://datagenx.slack.com/messages/datascience/