美文网首页
shell 截取字符串示例

shell 截取字符串示例

作者: 无我_a50f | 来源:发表于2021-12-08 09:25 被阅读0次
    #!/bin/bash
    
    unzip_file_path="prpd-197054464543297536.zip"
    
    str=$(echo $unzip_file_path | cut -d "-" -f1)
    echo $str
    

    相关文章

      网友评论

          本文标题:shell 截取字符串示例

          本文链接:https://www.haomeiwen.com/subject/wnnzxrtx.html