Bash scripts: Difference between revisions

From The Yambo Project
Jump to navigation Jump to search
(Created page with "===generate_inputs_1.sh=== #!/bin/bash bands='10 20 30 40' blocks='1 2 3 4 5' for i in ${bands} do for j in ${blocks} do sed -e "s/1 | 10/1 | $i/g" gw_pp...")
 
Line 13: Line 13:
     done
     done
   done
   done
== Links ==
* [[Tutorials|Back to tutorials menu]]
* [[How to obtain the quasi-particle band structure of a bulk material: h-BN | Back to How to obtain the quasiparticle band structure of a bulk material: h-BN  ]]
* [[Hartree Fock | Back to Hartree Fock module]]

Revision as of 07:22, 20 April 2017

generate_inputs_1.sh

#!/bin/bash 
bands='10 20 30 40'
blocks='1 2 3 4 5'
for i in ${bands}
 do
  for j in ${blocks}
   do
    sed  -e "s/1 | 10/1 | $i/g"  gw_ppa.in  > tmp$i
    sed  -e "s/NGsBlkXp= 1/ NGsBlkXp= $j/g"  tmp$i > gw_ppa_$i'b_'$j'Ry.in'
    rm tmp*
   done
 done

Links