Files
bin/createhdextlinks.sh
2012-12-16 18:46:30 +01:00

9 lines
196 B
Bash

#dirs=$(find .. -maxdepth 1 -type d ! -name "*.rec" -exec find {} -maxdepth 1 -name "*.rec" \;)
dirs=$(find .. -maxdepth 1 -type d -name "*.rec")
for i in $dirs; do
ln -s $i
echo $i
done