/usr/bin/kill-avarice is in avarice 2.13+svn372-2.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 | #!/bin/sh
if [ -f /usr/bin/cygpath.exe ]; then
# cygwin
while
avaricepid=`ps -es | grep '/avarice' | head -1 | cut -c2-7`
[ "$avaricepid" != "" ]
do
kill -9 $avaricepid
done
else
# linux, probably some others at least
killall -q avarice
fi
|