mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-01 22:05:08 +00:00
9b006b509f
Update to 3.1e, I mistook commit before. Submitted by: yasuf@big.or.jp
7 lines
309 B
Bash
7 lines
309 B
Bash
#!/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
|