码迷,mamicode.com
首页 > 系统相关 > 详细

磁盘挂载shell脚本

时间:2019-07-17 00:28:33      阅读:133      评论:0      收藏:0      [点我收藏+]

标签:etc   脚本   gre   color   dir   shel   fst   磁盘挂载   grep   

 1 #!/bin/bash
 2 if fdisk -l|grep /dev/sdb > /dev/null 2>&1 ;then
 3     fdisk /dev/sdb && mkfs.xfs  /dev/sdb1 && echo "/dev/sdb1 /data                       xfs    defaults        0 0" >> /etc/fstab  && mkdir /data && mount -a
 4     if [[ $? -ne 0 ]];then
 5         echo "mount fail"
 6     fi
 7 else
 8     echo "sdb not exist"
 9 
10 fi

 

磁盘挂载shell脚本

标签:etc   脚本   gre   color   dir   shel   fst   磁盘挂载   grep   

原文地址:https://www.cnblogs.com/zhj5551/p/11198245.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!