Shell #*/ 和 %/*时间:2025-01-07 08:06:37 #!/bin/bash i="this/is/a/path.config" name=${i#*/} path=${i%/*} echo $name echo $path is/a/path.config this/is/a