1
0
mirror of https://codeberg.org/kiss-community/kiss synced 2024-09-28 12:22:39 -06:00

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

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