Difference between revisions of "Solution 0 4 1"

From Wiki Max
Jump to navigation Jump to search
m (Daniele Varsano moved page Solution 4 1 to Solution 0 4 1)
 
(3 intermediate revisions by 2 users not shown)
Line 1: Line 1:
* Back to the previous page: [[Scripting#Exercises|Exercises]]
+
* Back to the previous page: [[Structural and electronic properties of semiconductors and metals #Convergences]]
  
 
Using bash scripting
 
Using bash scripting

Latest revision as of 14:54, 9 December 2020

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.