mirror of
https://github.com/slsdetectorgroup/slsDetectorPackage.git
synced 2025-04-28 17:10:03 +02:00
7 lines
249 B
Bash
Executable File
7 lines
249 B
Bash
Executable File
SRCFILE=gitInfoMoench.h
|
|
DSTFILE=versionAPI.h
|
|
|
|
SRCPATTERN=GITDATE
|
|
DSTPATTERN=APIMOENCH
|
|
|
|
awk -v a="$SRCFILE" -v b="$DSTFILE" -v c="$SRCPATTERN" -v d="$DSTPATTERN" 'FNR==NR&&$2==c{x=$3} NR!=FNR{if($2==d){$3="0x"substr(x,5)}print > b}' $SRCFILE $DSTFILE |