Changes between Version 10 and Version 11 of Wisdom/Shell


Ignore:
Timestamp:
02/12/12 15:13:06 (14 years ago)
Author:
jps@…
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Wisdom/Shell

    v10 v11  
    1818  $ find . -name '*foo*' | xargs rm
    1919
    20 To use the output of one command as the input of another use ` . For example, let's say you have a text file named listoffits.lis that contains the name of a number of fits files you'd like to display on ds9. To do this:
     20To use the output of one command as the input of another use {{{`}}}. For example, let's say you have a text file named {{{listoffits.lis}}} that contains the name of a number of fits files you'd like to display on ds9. To do this do:
    2121
    22   $ds9 `more listoffits.lis`
     22  $ds9 {{{`}}}more listoffits.lis{{{`}}}
    2323
    2424I always forget how to do this: