How to do dockings

From ChengLab
Revision as of 19:37, 25 May 2018 by Kevin (talk | contribs) (Created page with "=Move selected directories= Make the namelist head -25 sort_pbc | awk '{print $1}' | cut -d/ -f1-5 > tmp Move the directories for ii in $(cat tmp); do cp -r $ii res; done")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

Move selected directories

Make the namelist

head -25 sort_pbc | awk '{print $1}' | cut -d/ -f1-5 > tmp

Move the directories

for ii in $(cat tmp); do cp -r $ii res; done