mirror of
https://github.com/lilydjwg/archrepo2.git
synced 2025-03-10 12:02:43 +00:00
9 lines
125 B
Bash
Executable file
9 lines
125 B
Bash
Executable file
#!/bin/bash -e
|
|
|
|
for f; do
|
|
p=${f%.sig}
|
|
if [[ -f $p && $f -nt $p ]]; then
|
|
echo "touching $p."
|
|
touch "$p"
|
|
fi
|
|
done
|