如何同时插入2个参数?到目前为止,我只能插入$ filename但
不是$我想要的文件数量。
这是提示: “输入文件名,然后输入您想要的文件的金额”
grep $filename input.txt|head -n$Number;;
答案 0 :(得分:2)
我没跟着你。请更正您的问题。
但很可能你想要这个:
PROMPT_TEXT='Enter the filename followed by the amount of that file you want: '
read -p "$PROMPT_TEXT" filename amount
grep -m "$amount" -- "$filename" input.txt