case语句的语法格式:caseexpressioninpattern1)suite1;;pattern2)suite2;;...patternn)suiten;;*)other_suite;;esac一、编写一个测试脚本,名字为myservice.sh根据输入的选项,创建相应的文件#/bin/bash#myService=`basename$0`lockFile="/var/lock/subsys/$myService"[$#-lt1..
分类:
其他好文 时间:
2016-08-14 22:30:03
阅读次数:
261
#rsync-server配置uid=nobody
gid=nobody
usechroot=no
maxconnections=10
strictmodes=yes
pidfile=/var/run/rsyncd.pid
lockfile=/var/run/rsync.lock
logfile=/var/log/rsyncd.log
hostsallow=10.7.0.0/24
[server1]
path=/var/www/extsuite
commnet=backup
ignoreerrors
r..
分类:
其他好文 时间:
2016-06-20 16:02:49
阅读次数:
180
对TMemoryStream的一些改进 怎么又是关于Stream的,呵呵,应该说只是最近比较关心程序的效率问题,而我对Stream其实并没有什么特别的研究,只是自己发现了一些新的用法,希望能对大家有用而已。 事情的起因还是那个破烂电子相册软件,今天又发现了一个可改进之处,有一段程序我原来是这么写的:
分类:
其他好文 时间:
2016-03-17 19:09:41
阅读次数:
126
1 name 可能被用于覆盖作业的名称. 2 filename fio 通常基于该作业名称,线程编号,构成一个文件名称和位置.如果您不想让线程之间的共享文件在一个作业或作业.指定文件名都以覆盖默认的. 3 lockfile 4 iodepth IO深度 5 direct 6 buffer...
分类:
其他好文 时间:
2015-11-12 11:45:50
阅读次数:
812
AH00526: Syntax error on line 20 of /private/etc/apache2/extra/httpd-mpm.conf:Invalid command 'LockFile', perhaps misspelled or defined by a module no...
分类:
Web程序 时间:
2015-10-06 22:07:22
阅读次数:
388
bool checkOnly(){ const char filename[] = "./lockfile"; int fd = open (filename, O_WRONLY | O_CREAT , 0644); int flock = lockf(fd, F_TLOCK, ...
分类:
编程语言 时间:
2015-08-16 17:56:37
阅读次数:
258
当需要更新CocoaPods的时候,发现此问题.pod updateUpdate all podsAnalyzing dependencies[!] The version of CocoaPods used to generate the lockfile (0.37.1) is higher t...
分类:
其他好文 时间:
2015-08-13 14:17:57
阅读次数:
155
#director端脚本
#cat/etc/init.d/ipvs
#!/bin/bash
#
#LVSservicescript
#chkconfig:-9010
./etc/rc.d/init.d/functions
#
VIP=172.16.100.100
DIP=172.16.100.10
RIP1=172.16.100.11
RIP2=172.16.100.12
PORT=80
RSWEIGHT1=1
RSWEIGHT2=2
LOCKFILE=/var/lock/subsys/ipvsad..
分类:
其他好文 时间:
2015-06-24 19:16:53
阅读次数:
131
echo的使用记录-n用法:输出不换行
例如:
echo-n"a1:"
echo"b2"
得到:
a1:b2
-e用法:允许后面的输出进行转义
例如:
exit_script()
{
echo-e"\033[1;40;31mInstall$1error,willexit.\n\033[0m"
rm-f$LOCKfile
exit1
}
LOCKfile=/tmp/.$(basename$0)
if[-f"$LOCKfile"]
..
分类:
其他好文 时间:
2015-06-08 19:51:00
阅读次数:
142
记录一下遇到的问题1.CocoaPods 版本旧The version of CocoaPods used to generate the lockfile is higher that the one of the current executable. Incompatibility issue...
分类:
其他好文 时间:
2015-06-05 19:23:54
阅读次数:
176