我正在编写一个文本艺术脚本,我在其中接受一些输入并重复它,教科书上的简单。
echo "a script that takes some input and repeats it 100 times"
read -e -p "text input " inputtext
for n in {1..100};
do echo -n "$inputtext"
done
这很好用,但是我该如何向该for n in {1..100}
部件添加读取输入呢?
for n in {1..'$repeats'}
肯定不行..
我对 bash 脚本很陌生。
如何在 bash 循环中将变量放在大括号内?