美文网首页
shell 开启匿名访问ftp脚本

shell 开启匿名访问ftp脚本

作者: SkTj | 来源:发表于2019-02-23 15:18 被阅读0次

    !/bin/bash

    if [ # -ne 1 ];then echo "Usage:0 on或 $0 off"
    exit 1
    fi

    OPT=1 case "OPT" in
    [Oo][nN]) CMD='YES';;
    [Oo][fF][fF]) CMD='NO';;
    *)
    echo "请输入on或off"
    exit 1
    ;;
    esac

    VSFTPD_CONF='/etc/vsftpd.conf'
    sed -i 's/^.anonymous_enable=./anonymous_enable=CMD/g'VSFTPD_CONF

    相关文章

      网友评论

          本文标题:shell 开启匿名访问ftp脚本

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