1
0
mirror of https://codeberg.org/kiss-community/kiss synced 2024-07-02 14:02:26 +00:00
kiss/contrib/kiss-preferred
Arthur Williams 03cf1f5bf7 kiss-preferred: new utility
Added a new utility to list all current conflicts resolutions.
2020-11-07 05:02:21 -06:00

8 lines
155 B
Bash
Executable File

#!/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