Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在使用以下代码时遇到了一些问题:
echo XX.txt 4 | script
该脚本应该编写 XX.txt 的第 4 行,但我无法将两个回显的参数都放入脚本中的变量中。我必须使用回声,因为这是学校练习。:)
如何在我的脚本中获取 XX.txt 和 4 作为单独的变量?我尝试过使用 read,但它只将两个参数放在 1 个变量中。
希望你能帮我
read应该管用。但是,您必须为其指定两个变量:
read
echo XX.txt 4 | { read file num echo File: $file echo Num: $num }