blob: 01ed0f079b2dee9bb25f55f65666a898a97e8bef (
plain)
1
2
3
4
5
6
7
|
#!/bin/sh
find `pwd`/ -type f -name '*.[chyl]' -print|sed 's;//;/;g' | mkid -S.gen=C -
find . -type d -print |while read DIR
do
[ "$DIR" != "." ] && ln -f -s `pwd`/ID $DIR/ID
done
|