Today we released two new features which really increase the usefulness of CloudSH.com.
Command Pipelines
Pipelines allow the output of a command to be passed as arguments to the next command. For example you could pass the output of recent delicious posts to the echo command and only echo the HREF like this:
del/recent | echo $$.href
Resulting in a list of links. The pipe (|) is what enables this. The $$ is a reference to the object being passed to the command. Get more detailed help by typing GetPipelineHelp on the command line.
Output Redirection
This allows you to redirect the output of a command. Right now you can use the emailme target to send the command output to your email. More targets will be coming soon. Output redirection is the last part of a command sequence. We can add a redirect to the command above to have the results sent to our email like this:
del/recent | echo $$.href > emailme
To get more detailed help and see what targets are currently available type GetRedirectionHelp on the command line.
We hope you find these useful and send us all your feedback and requests!