shell編程:經典shell代碼

1.shell批量去掉文件後綴,批量重命名。html

#移除文件的.ok後綴,須要傳入一個參數,爲須要查找ok文件的路徑
function mvok() {
    if [ $# -eq 1 ] ;then
        for file in `hdfs dfs -find $1 -name "*.ok"`
        do
            echo "move ok on file ${file}"
            hdfs dfs -mv ${file} ${file%.ok}
        done
    fi
}linux

批量修改文件後綴,注意${file%.ok}是指從file從後找.ok,有的話就去掉shell

linux shell 字符串操做(長度,查找,替換)詳解spa

相關文章
相關標籤/搜索