Linux shell
cfc1243570631
这个作者很懒,什么都没留下…
展开
-
shell编程中对变量做算术运算
我的系统是 RedHatEnterprise Linux5 #!/bin/sh s1=0 s2=0 s3=0 s4=0 for var in 1 2 3 4 5 6 7 8 9 10 do s1=`expr ${s1} + ${var}` #这里的``不是单引号 而是键盘左上角Esc 键下方的那个 而且+号左右都有空格 s2=$[${s2}+${var}]原创 2013-05-05 15:53:33 · 963 阅读 · 0 评论 -
Linux 中 Shell 中的数组(将命令行参数作为数组的元素)
#!/bin/sh num=$# one=1 zero=0 array=($@) #将命令行参数作为数组元素 while [ ${num} != ${zero} ] do let "num-=one" echo "${array[num]}" done原创 2013-05-05 19:16:53 · 3000 阅读 · 1 评论 -
sudo and samba file example
//sudo # # This file MUST be edited with the 'visudo' command as root. # # Please consider adding local content in /etc/sudoers.d/ instead of # directly modifying this file. # # # This file MU原创 2015-11-12 15:56:02 · 519 阅读 · 0 评论