如何迭代Bash脚本中的位置参数?

前端之家收集整理的这篇文章主要介绍了如何迭代Bash脚本中的位置参数?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我哪里错了?

我有一些文件如下:

filename_tau.txt
filename_xhpl.txt
fiename_fft.txt
filename_PMB_MPI.txt
filename_mpi_tile_io.txt

我将tau,xhpl,fft,mpi_tile_io和PMB_MPI作为脚本的位置参数传递给如下:

./script.sh tau xhpl mpi_tile_io fft PMB_MPI

我想要grep在循环内搜索,首先搜索tau,xhpl等等.

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
像这样设置你的for循环.使用这种语法,循环遍历位置参数,依次将每个参数分配给“点”.
for point; do
  grep "$str" ${filename}${point}.txt 
done
原文链接:https://www.f2er.com/bash/383950.html

猜你在找的Bash相关文章