Skip to content
yvancouver edited this page May 8, 2014 · 5 revisions

cd /Voulmes/HTS/5exomeTove for i in ls ./;do tar -cvzf $i.tar.gz $i ; done

don't work because it creates a hidden folder in the corresponding folder

like in folder1 a .tar.gz !

new command!

for i in ls ./;do tar -cvzf ${i%/}.tar.gz ${i%/} ; done

Summary

  • 06Mai2014

    • tar the analysis filer in data1, I don't know from where it comes from.....
    • Rerun post analysis perl script on the data1.
    • Move old Analysis to data1,
      • rsync -zva --remove-source-files Project_Diag-excap* /data1/yvan/
  • 08Mai2014

    • Move old Analysis to data1,
      • rsync -zva --remove-source-files Project_Diag-excap* /data1/yvan/
    • Compress Analysis
      • rm -rf Analysis

Clone this wiki locally