6 lines
129 B
Plaintext
6 lines
129 B
Plaintext
|
#!/bin/sh -efu
|
||
|
while IFS=$'\t' read -r f t; do
|
||
|
[ -z "${f##*.a}" ] && [ -z "${t#*current ar archive*}" ] &&
|
||
|
echo "$f" ||:
|
||
|
done
|