10 lines
92 B
Bash
10 lines
92 B
Bash
#!/bin/bash
|
|
|
|
for X in `find dir`;do
|
|
if test -L $X && test -e $X; then
|
|
echo $X
|
|
fi
|
|
done
|
|
|
|
|