Difference between revisions of "Solution 0 1 1"

From Wiki Max
Jump to navigation Jump to search
(Created page with " #! /bin/bash -x filein=scf.diamond.in bindir=/usr/local/bin # # fileout=scf.diamond.out fileout=`echo $filein | sed 's/\.in/\.out/' ` # $bindir/pw.x < $filein > $file...")
 
m (Daniele Varsano moved page Solution 1 1 to Solution 0 1 1)
 
(6 intermediate revisions by the same user not shown)
Line 1: Line 1:
 +
* Back to the previous page: [[Scripting#Exercises|Exercises]]
  
 
  #! /bin/bash -x
 
  #! /bin/bash -x

Latest revision as of 12:01, 1 December 2020

#! /bin/bash -x
filein=scf.diamond.in
bindir=/usr/local/bin
#
# fileout=scf.diamond.out
fileout=`echo $filein | sed 's/\.in/\.out/' `
#
$bindir/pw.x < $filein > $fileout
exit 0