Mailinglisten-Archive |
Thomas Langfeld wrote:
> Hi,
>
>
>>>Es gibt auch Macs in dieser Computerwelt, dort ist das "\r"
***********
Hallo,
ein kleines shell script, das Mac in UNIX umwandelt
******************
#!/bin/sh
#
#
# mac2unix - a small shell script for translating MacOS documents
# to Un*x files. The conversion is done in place: it
# overwrites the original
#
#
# Usage: mac2unix file1 [file2] [file3] ...
#
#
# Steven Scholnick <steves at telerama.lm.com>
# Date: November 21, 1996
for file
do
tr '\015' '\012' < "$file" > "$file.tmp"
mv "$file.tmp" "$file"
done
exit 0
********************
Vielleicht für den einen oder anderen Zweck hilfreich
Gruesse
Helmut P. Fleischhauer
php::bar PHP Wiki - Listenarchive