From 11a502b28122c8a15f8f3620dc7900eb5071cb8c Mon Sep 17 00:00:00 2001 From: liammonahan Date: Tue, 2 Aug 2011 22:45:14 -0700 Subject: [PATCH] The -a flag will allow the interactive commands to work. i.e. todo.sh del will allow you to type yes or no instead of failing for lack of input. --- Tips-and-Tricks.textile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Tips-and-Tricks.textile b/Tips-and-Tricks.textile index 4a47080..d214d83 100644 --- a/Tips-and-Tricks.textile +++ b/Tips-and-Tricks.textile @@ -41,7 +41,7 @@ You can still type @t add laundry@ from anywhere to add a task, but now you can *Access your remote server's @todo.txt@ via ssh.* If you have a shell account on @remote.server.com@, alias your @todo.sh@ commands to do the same thing as usual but prepend @ssh username@remote.server.com@ to them. Something like:
-ssh username@remote.server.com todo.sh list
+ssh -a username@remote.server.com todo.sh list
 
Displays the remote todo list.