作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
给定
# this is programmatically generated... hard-coded here for this example
commands="\nthing1@this is thing 1!\nthing2@this is thing 2!"
while read -r line; do
cmd=$(printf "$line" | cut -d'@' -f1 | tr -d '\n')
desc=$(printf "$line" | cut -d'@' -f2 | tr -d '\n')
printf ' %-20s %s\n' "$cmd" "$desc"
done <<< "$commands"
我希望能输出
thing1 this is thing1!
thing2 this is thing2!
相反我得到
thing1thing2 this is thing1!this is thing2!
我做错了什么?
我想在换行符上读取
,这样我就可以在@
和printf
上相应地cut
。
最佳答案
#!/bin/bash
input="\nthing1@this is thing 1!\nthing2@this is thing 2!"
# echo replaces '\n's with real new-lines
# readarray -t loads the multiline string into an array
readarray -t array <<< $(echo -e "${input}")
# loop it
for command in "${array[@]}"; do
echo "${command}"
done
关于bash - 如何在 bash 中迭代多行变量?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44959712/
我是一名优秀的程序员,十分优秀!