6 lines
127 B
Plaintext
6 lines
127 B
Plaintext
|
#!/bin/sh -efu
|
||
|
while IFS=$'\t' read -r f t; do
|
||
|
[ -z "${t##*script text executable*}" ] &&
|
||
|
[ -x "$f" ] && echo "$f" ||:
|
||
|
done
|