在Bash,我想得到字符串的第N个字。
例如:
STRING="one two three four" N=3
结果:
"three"
什么Bash命令/脚本可以这样做?
echo $STRING | cut -d " " -f $N
例如:
STRING="one two three four" N=3
结果:
"three"
什么Bash命令/脚本可以这样做?
echo $STRING | cut -d " " -f $N