Fosdccf.blog.chinaunix.net
sdccf
全部博文(19283)
Linux酷软(214)
tmp(0)
PostgreSQL(93)
Solaris(383)
AIX(173)
SCOUNIX(575)
DB2(1005)
Shell(386)
C/C++(1187)
MySQL(1750)
Sybase(465)
Oracle(3695)
Informix(548)
HP-UX(0)
IBM AIX(2)
Sun Solaris(0)
BSD(1)
Linux(8597)
SCO UNIX(23)
2011年(1)
2009年(125)
2008年(19094)
2007年(63)
clifford
linky521
曾德标
fengzhan
leon_yu
mcuflowe
yt200902
guanyuji
GY123456
snow888
carlos94
丸喵喵
sean229
cxunix
可怜的猪
cqxc413
xzzgege
wb123456
分类:
2008-04-18 22:44:04
#!/bin/bash #bakup /etc/fstab cp /etc/fstab /etc/fstab.orig # config fdisk -l /dev/hda |grep FAT >>temp fdisk -l /dev/hdb |grep FAT >>temp fdisk -l /dev/hdc |grep FAT >>temp fdisk -l /dev/hdd |grep FAT >>temp #sort awk '$0~/\*/ {print $1" "$NF}' temp >>pt awk '$0!~/\*/ {print $1" "$NF}' temp >>pt i=142 while read disks fstype do if [ $fstype = "FAT32" ]; then disks_FS=vfat else disks_FS=msdos fi i=`expr $i + 1` if [ "${i:2}" != "8" -a "${i:2}" != "9" ]; then echo -e "$disks"\\t"/mnt/"\\$i""\\t"$disks_FS"\\t"iocharset=gb2312,codepage=936,umask=0 0 0" >>/etc/fstab fi done
上一篇:一个盗取别人passwd的shell脚本
下一篇:bash命令行处理详解
登录 注册