Where am I going wrong?
I have several files:
filename_tau.txt filename_xhpl.txt fiename_fft.txt filename_PMB_MPI.txt filename_mpi_tile_io.txt
I pass tau , xhpl , fft , mpi_tile_io and PMB_MPI as positional parameters to the script as follows:
./script.sh tau xhpl mpi_tile_io fft PMB_MPI
I want grep to search inside the loop, first search for tau, xhpl, etc.
point=$1 #initially points to first parameter i="0" while [$i -le 4] do grep "$str" ${filename}${point}.txt i=$[$i+1] point=$i #increment count to point to next positional parameter done
scripting bash
Sharat chandra
source share