awk:
# echo "1:3:5" | awk -F ":" '{print $NF}'
sed:
# echo "1:3:5" | sed 's/.*:\([^:]*\)$/\1/'
1、shell中分割字符串之后怎么取得最后一个东西的值?如果可以的话,怎么将分割后的结果保存到一个数组中?
https://zhidao.baidu.com/question/297800980.html
awk:
# echo "1:3:5" | awk -F ":" '{print $NF}'
sed:
# echo "1:3:5" | sed 's/.*:\([^:]*\)$/\1/'
1、shell中分割字符串之后怎么取得最后一个东西的值?如果可以的话,怎么将分割后的结果保存到一个数组中?
https://zhidao.baidu.com/question/297800980.html