最佳答案
在 Bash 中,我想得到由变量保存的字符串的第 N 个单词。
例如:
STRING="one two three four"
N=3
结果:
"three"
什么 Bash 命令/脚本可以做到这一点?