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