mirror of
https://codeberg.org/kiss-community/kiss
synced 2024-11-04 22:15:36 -07:00
8 lines
155 B
Plaintext
8 lines
155 B
Plaintext
|
#!/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
|
||
|
|