From 0b8cd866e014394b7296d2659a163cab5dafd3bc Mon Sep 17 00:00:00 2001 From: the1ts Date: Wed, 3 Aug 2011 04:49:50 -0700 Subject: [PATCH] adding -t to the ssh string, this enables for example the edit action to work over ssh. --- 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 d214d83..095e29e 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 -a username@remote.server.com todo.sh list
+ssh -a -t username@remote.server.com todo.sh list
 
Displays the remote todo list.