Actions

Difference between revisions of "Linux"

From ACL@NCU

Line 9: Line 9:
</pre>
</pre>


*find files with a suffix recursively under subdirectories
**find files with a suffix recursively under subdirectories
<pre>
<pre>
find . -name \*.mgz -print
find . -name \*.mgz -print

Revision as of 00:37, 18 January 2013

Useful tcsh and python commands

tcsh

  • Find files
    • with defined stem pattern under multiple different folder
find */*/*anat+tlrc.*
    • find files with a suffix recursively under subdirectories
find . -name \*.mgz -print
    • delete or copy filenames from a "pattern" search
rm `find */*/*anat+tlrc.*`

python