8 lines
113 B
Bash
Executable File
8 lines
113 B
Bash
Executable File
#!/bin/sh -efu
|
|
while IFS=$'\t' read -r f t; do
|
|
case "$t" in
|
|
*'symbolic link to '*)
|
|
echo "$f" ;;
|
|
esac
|
|
done
|