用于解析和提取字符串的以下组成部分的 posix shell(不是 bash)命令是什么?
谢谢!
使用
read
$ IFS=. read -r major minor <<EOF > 15.12 > EOF $ echo $major 15 $ echo $minor 12