使用文件名列表填充并读取数组

发布于 2024-11-19 04:54:27 字数 242 浏览 4 评论 0原文

琐碎的问题。

#!/bin/bash

if test -z "$1"
then
  echo "No args!"
  exit
fi

for newname in $(cat $1); do
  echo $newname
done

我想用数组填充代码替换循环内的回显。 然后,在循环结束后,我想再次读取数组并回显内容。 谢谢。

Trivial question.

#!/bin/bash

if test -z "$1"
then
  echo "No args!"
  exit
fi

for newname in $(cat $1); do
  echo $newname
done

I want to replace that echo inside the loop with array population code.
Then, after the loop ends, I want to read the array again and echo the contents.
Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

对岸观火 2024-11-26 04:54:27

如果文件(如您的代码所示)具有一组文件,每个文件都在一行中,您可以将值分配给数组,如下所示:

array=(`cat $1`)

之后,要处理每个元素,您可以执行以下操作:

for i in ${array[@]} ; do echo "file = $i" ; done

If the file, as your code shows, has a set of files, each in one line, you can assign the value to the array as follows:

array=(`cat $1`)

After that, to process every element you can do something like:

for i in ${array[@]} ; do echo "file = $i" ; done
娜些时光,永不杰束 2024-11-26 04:54:27
declare -a files
while IFS= read -r
do
    files+=("$REPLY") # Array append
done < "$1"
echo "${files[*]}" # Print entire array separated by spaces

为此,不需要 cat

declare -a files
while IFS= read -r
do
    files+=("$REPLY") # Array append
done < "$1"
echo "${files[*]}" # Print entire array separated by spaces

cat is not needed for this.

琉璃繁缕 2024-11-26 04:54:27
#!/bin/bash

files=( )
for f in $(cat $1); do
    files[${#files[*]}]=$f
done

for f in ${files[@]}; do
    echo "file = $f"
done
#!/bin/bash

files=( )
for f in $(cat $1); do
    files[${#files[*]}]=$f
done

for f in ${files[@]}; do
    echo "file = $f"
done
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文