Solution 0 4 1
(Redirected from Solution 4 1)
- Back to the previous page: Structural and electronic properties of semiconductors and metals #Convergences
Using bash scripting
#!/bin/bash
#
filein=$1
#
ene=`grep ! $filein | awk '{print $(NF-1)}'`
alat=`grep "lattice parameter" $filein | awk '{print $(NF-1)}'`
#
echo $alat $ene
Probably more elegant and general using awk or (as today's standard) python.