samba shell脚本
时间: 2023-10-30 18:06:41 浏览: 109
shell脚本
以下是一个示例的Samba shell脚本,用于一键安装和配置Samba服务:
```bash
#!/bin/bash
if [ "$#" -ne 1 ]
then
echo "运行脚本格式为:$0 /dir/"
exit 1
else
if ! echo $1 | grep -q '^/.*'
then
echo "请提供一个绝对路径。"
exit 0
fi
fi
if ! rpm -q samba &>/dev/null
then
echo "将要安装samba"
sleep 1
yum -y install samba
if [ $? -ne 0 ]
then
echo "samba 安装失败"
exit 1
fi
fi
dirconf="/etc/samba/smb.conf"
cat >> $dirconf << EOF
阅读全文