10 lines
183 B
Plaintext
10 lines
183 B
Plaintext
|
#!/bin/sh -efu
|
||
|
while IFS=$'\t' read -r f t; do
|
||
|
case "$t" in
|
||
|
*'symbolic link to `/'*)
|
||
|
echo "$f"; continue ;;
|
||
|
*'broken symbolic link to '*)
|
||
|
echo "$f"; continue ;;
|
||
|
esac
|
||
|
done
|