#!/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
前言 对于Android工程师来说编译/打包等问题立即就成痛点了。一个APP有多个版本,Release版、Debug版、Test版。甚至针对不同APP Store都有不同的版本。在以前ROM的环境下,虽然可以配置Android.mk,但是需要依赖整个Android源码,而且还不能完全做到满足条件,很 ...
分类:
其他好文 时间:
2017-03-27 21:37:02
阅读次数:
525
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
#!/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
#!/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
#!/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
#!/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
下载网址: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
复制主文件夹
private void CopyDirectory(string srcdir, string desdir)
{
try
{
if (File.Exists(srcdir))
{
File.Copy(srcdi...
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