diff --git a/catsit.fish b/catsit.fish new file mode 100644 index 0000000..d74951b --- /dev/null +++ b/catsit.fish @@ -0,0 +1,9 @@ +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