美文网首页
common shell snippets

common shell snippets

作者: yepeng05 | 来源:发表于2018-11-28 14:16 被阅读0次

    循环执行

    cd /opt/data/extracts
    
    for filename in `ls`
    do
        iconv -c -f utf-16le -t utf-8 $filename -o /opt/data/$filename;
    done
    

    ftp下载文件

    ftp -niv <<!
    open 172.41.51.178 2021
    user **** xxxx
    type binary
    passive off
    prompt off
    cd /gsta/labelInfoMeta
    lcd /opt/data/tests
    mget *
    bye
    !
    

    相关文章

      网友评论

          本文标题:common shell snippets

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