blob: 8ae32462a9d3705fcd12d80b4174de5b4a3f7ddc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
#!/bin/bash
function _fail() {
echo "ERROR: Failed to find or copy \"$1\""
exit 1
}
if [ ! -r filelist ]; then
echo "ERROR: Can't read filelist"
exit 1
fi
read -p "Enter the path to the TFTD data files: " _tftdpath
if [ ! -d "$_tftdpath" ]; then
echo "ERROR: No such directory"
exit 1
fi
IFS="
"
for file in $(cat filelist); do
# Handle files with identical names but different content
case "$file" in
LOFTEMPS.DAT|SCANG.DAT)
if ! find "$_tftdpath" -path "*TERRAIN/$file" -exec cp "{}" ./"ter-$file" \; &>/dev/null; then
_fail $file
fi
if ! find "$_tftdpath" -path "*GEODATA/$file" -exec cp "{}" ./"geo-$file" \; &>/dev/null; then
_fail $file
fi
;;
INTERWIN.DAT)
if ! find "$_tftdpath" -path "*GEODATA/$file" -exec cp "{}" . \; &>/dev/null; then
_fail $file
fi
;;
*)
if ! find "$_tftdpath" -name "$file" -exec cp "{}" . \; &>/dev/null; then
_fail $file
fi
;;
esac
done
echo "All files successfully copied, now run makepkg"
|