mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-06 22:51:41 +00:00
7 lines
309 B
Plaintext
7 lines
309 B
Plaintext
|
#!/bin/sh
|
||
|
for i in `find /usr/local/lib/povray31 \( -name '*.ini' -o -name '*.pov' -o -name '*.txt' -o -name '*.sh' -o -name '*.map' -o -name '*.inc' -o -name '*.par' -o -name '*.sph' -o -name '*.tri' -o -name '*.c*' \) -print`; do
|
||
|
sed -e 's/
$//g' $i > /tmp/xfer # ^M is Ctrl+M
|
||
|
rm $i
|
||
|
mv /tmp/xfer $i
|
||
|
done
|