You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#!/bin/bash |
|
|
|
FILES="*.c *.cpp *.h *.rc *.m *.py wscript" |
|
|
|
rm xash3d.* && touch xash3d.files |
|
|
|
for i in $FILES; do |
|
find -name "$i" >> xash3d.files |
|
done |
|
|
|
ln -s contrib/a1batross/xash3d.* .
|
|
|