Files
ostep-projects/tester/xv6-edit-makefile.sh
2019-03-31 08:49:14 -05:00

17 lines
215 B
Bash
Executable File

#! /bin/bash
infile=$1
testnames=$2
gawk -vtestnames=$testnames '
($1 == "_mkdir\\") {
n = split(testnames, x, ",");
for (i = 1; i <= n; i++) {
printf("\t_%s\\\n", x[i]);
}
}
{
print $0;
}' $infile