The program has an output set to 2 decimal points, one for each line in the file. Depending on the execution, many files can be displayed, each of which has the file name cancer.ex #, where # is the number of times the program was executed from the script.
The professor provided awk script as a first step to creating a 95% trust map using gnuplot. I would like to convert the output to a format
conf $1 $2 $3 var#
where # is the number from cancer.ex #
I developed the following:
#!/bin/bash
Files=Output/*
String
for f in $Files
do
String="conf "
cat $f | while read LINE
do
String="$LINE "
done
echo $String
done
, , . , . , nada script . , String="$LINE echo $LINE, , .
bash?