kiss-preferred: new utility

Added a new utility to list all current conflicts resolutions.
This commit is contained in:
Arthur Williams 2020-11-07 04:27:57 -06:00
parent 7df30fd9df
commit 03cf1f5bf7
1 changed files with 7 additions and 0 deletions

7
contrib/kiss-preferred Executable file
View File

@ -0,0 +1,7 @@
#!/bin/sh -e
# Lists the owners of all files with conflicts
kiss a | sort -u -k2 | while read -r _ path; do
echo "$(kiss owns "$path")" "$path"
done