码迷,mamicode.com
首页 >  
搜索关键字:srcdir    ( 40个结果
UploadFtp
#!/bin/bash FILENAME=$1 DSTDIR=$2 FTPSRV=ip FTPUSER="user" FTPPWD="password" SRCDIR='/path/' FILE1=$1 /usr/bin/ftp -in $FTPSRV <<! user $FTPUSER $FTPP... ...
分类:其他好文   时间:2017-03-30 21:55:13    阅读次数:105
收藏-Gradle史上最详细解析
前言 对于Android工程师来说编译/打包等问题立即就成痛点了。一个APP有多个版本,Release版、Debug版、Test版。甚至针对不同APP Store都有不同的版本。在以前ROM的环境下,虽然可以配置Android.mk,但是需要依赖整个Android源码,而且还不能完全做到满足条件,很 ...
分类:其他好文   时间:2017-03-27 21:37:02    阅读次数:525
Linux下inotify监控文件夹状态,发生变化后触发rsync同步
1、安装工具--inotifywget http://cloud.github.com/downloads/rvoicilas/inotify-tools/inotify-tools-3.14.tar.gztar -zxvf inotify-tools-3.14.tar.gzcd inotify-t ...
分类:系统相关   时间:2016-11-29 17:16:13    阅读次数:445
php编译安装脚本
#!/bin/bash DIR=$(cd"$(dirname"$0")"&&pwd) SRCDIR=/usr/local/src phpVersion="5.6.25" phpUser=www phpGroup=www if[$(id-u)-ne0];then echo"Pleaserunasroot" exit1 fi DISTRO="" Distributions="CentOSUbuntuRed" foriin$Distributions do cat/etc/*-release|gre..
分类:Web程序   时间:2016-09-02 23:38:43    阅读次数:234
nginx编译安装脚本
#!/bin/bash DIR=$(cd"$(dirname"$0")"&&pwd) SRCDIR=/usr/local/src nginxVersion="1.10.1" nginxUser=nginx nginxGroup=nginx if[$(id-u)-ne0];then echo"Pleaserunasroot" exit1 fi DISTRO="" Distributions="CentOSUbuntuAmazonRed" foriin$Distributions do cat/e..
分类:其他好文   时间:2016-09-02 01:05:05    阅读次数:169
php编译安装脚本
#!/bin/bash DIR=$(cd"$(dirname"$0")"&&pwd) SRCDIR=/usr/local/src phpVersion="5.6.23" phpUser=www phpGroup=www if[$(id-u)-ne0];then echo"Pleaserunasroot" exit1 fi DISTRO="" Distributions="CentOSUbuntu" foriin$Distributions do cat/etc/*-release|grep"$..
分类:Web程序   时间:2016-08-26 15:52:10    阅读次数:217
nginx编译安装脚本
#!/bin/bash DIR=$(cd"$(dirname"$0")"&&pwd) SRCDIR=/usr/local/src nginxVersion="1.10.1" nginxUser=nginx nginxGroup=nginx if[$(id-u)-ne0];then echo"Pleaserunasroot" exit1 fi DISTRO="" Distributions="CentOSUbuntuAmazon" foriin$Distributions do cat/etc/..
分类:其他好文   时间:2016-08-23 01:42:39    阅读次数:194
cppcheck 下载与安装(Liunx)
下载网址:https://sourceforge.net/projects/cppcheck/files/cppcheck/ 选择安装包:cppcheck-1.75.tar.gz 解压安装包:tar –xvf cppcheck-1.75.tar.gz 编译: make SRCDIR=build CF... ...
分类:其他好文   时间:2016-08-12 13:24:37    阅读次数:343
c#复制文件夹(复制主文件夹和不复制主文件夹)
复制主文件夹 private void CopyDirectory(string srcdir, string desdir) { try { if (File.Exists(srcdir)) { File.Copy(srcdi...
分类:Windows程序   时间:2016-05-12 22:13:23    阅读次数:196
使用php结合rsync、inotify实现的实时备份脚本!
1.php脚本 <?php #解析配置文件 $arr=parse_ini_file(‘config.ini‘,true); #获取符合“监控”要求的目录格式的路径 $dirListen=implode(‘‘,$arr[‘srcdir‘]); #获取符合“同步目录”要求的格式的目录路径 $sdDir=dir_path_parse($arr[‘srcdir‘],$arr[‘dstdir‘]); #运行..
分类:Web程序   时间:2016-01-04 18:21:00    阅读次数:765
40条   上一页 1 2 3 4 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!