我一直在走,至少还有条路,也好于无路可走…
发布时间:2013-07-20 14:26:37
#!/bin/bash#孤鹰i=1groupadd pxe2000chown .pxe2000 /var/logchmod g=r /var/log/* -Rchmod 755 /var/log/* -R while (( $i<=700 ))douseradd -g pxe2000 kk$iecho redhat |passwd --stdin kk$i >/dev/nulllet i++done......【阅读全文】
发布时间:2013-07-20 14:09:30
创建一个shell,要求如下:1. 创建普通用户aix1,aix22. 创建全局变量或本地变量,当此shell脚本在所有用户下执行时可以提示my name: 当在root用户下执行时,输入"M" "I am root"当在aix1和aix二上执行此脚本时,输入"M" "I am AIX",如果还有其他用户,执行并输入任意字符 都显示 user1当执行此脚本后.........【阅读全文】
发布时间:2013-07-20 14:03:49
1. 设置静态IP地址为 192.168.4.88/255.255.255.0 并启动网络2. 截取/etc/hosts文件内的ip地址3. 过滤静态IP地址192.168.4.884. 判断静态IP地址与hosts文件内的IP地址,如果匹配则输出 hello world 否则将输出 Error !! #!/bin/bash##guyingsed -e 's/BOOTPROTO=dhcp/BOOTPROTO=static/g' /etc/sysconfig/networ.........【阅读全文】
发布时间:2013-07-20 14:00:15
#!/bin/bash#guying chuliwenjian#=====================touch file =========if [ -d /shared ];thenecho the shared is in your systemelsemkdir /sharedfifor i in {1..140}dotouch /shared/share$iecho 1004xcbtpk22m >/shared/share$idone#==============replace cbt Aixfor b in {1..140}doadd=`sed .........【阅读全文】