1
0
mirror of https://codeberg.org/kiss-community/kiss synced 2024-07-02 14:02:26 +00:00
kiss/contrib/kiss-preferred

13 lines
284 B
Plaintext
Raw Normal View History

#!/bin/sh -e
# Lists the owners of all files with conflicts
2020-11-19 09:48:33 +00:00
kiss a | while read -r _ path; do
if owner=$(kiss owns "$path" 2>/dev/null) && [ "$owner" ]; then
printf '%s %s\n' "$owner" "$path"
else
printf 'warning: %s has no owner\n' "$path" >&2
fi
done