catsit/catsit.fish

10 lines
168 B
Fish

function catsit
set pipe /run/catsit/catsitd
if [ -p $pipe ]
/usr/local/sbin/catsit -c $pipe $argv
end
if [ ! -p $pipe ]
echo "Connection impossible."
end
end