Files
2024-08-31 12:07:21 +03:00

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