标签: shell unix
如何从/的第4个斜杠(/FTP-Test/TestAutoUpdate/Test/1/x64)后提取值?
/
/FTP-Test/TestAutoUpdate/Test/1/x64
示例的提取结果应为1
1
答案 0 :(得分:0)
awk -F'/' '{print $5}' file kent$ echo "/FTP-Test/TestAutoUpdate/Test/1/x64"|awk -F'/' '{print $5}' 1