1
2
3
4
5
6
7
8
9
10
11
12
13
|
#!/bin/sh
# When using compressed LUTs, prepare each XML file using this command
for file in $*
do
echo $file
gzip -c $file | uuencode -m $file.gz > $file.gz.uue
done
#gzip -c [file.xml] | uuencode -m LUT > [file.xml.gz.uue]
|