标签: bash arguments naming
我有一个bash脚本(script.sh),它作用于一个名为12345.txt的文件,该文件当前生成一个名为" 12345.txt_output"的输出文件:
命令行:
bash script.sh 12345.txt
script.sh的最后一行:
> "${1}_output"
如何更改输出命令(仍使用$ 1时)命名文件12345_output(而不是12345.txt_output)?
答案 0 :(得分:1)
bash字符串函数
{{1}}