The minute you think of giving up, think of the reason why you held on so long!
发布时间:2014-06-06 12:04:46
通过shell进行文件备份、链接FTP上传点击(此处)折叠或打开#!/bin/bash#backup the directory“/www/test” to the directory“/home/good/bak”FILE_NAME=testupdate_bak`date +%Y%m%d`cp -af /var/www/test /home/g.........【阅读全文】
发布时间:2014-01-06 11:24:58
Makefile在符合GNU Makefiel惯例的Makefile中,包含了一些基本的预先定义的操作,记录如下:make根据Makefile编译源代码,连接,生成目标文件,可执行文件。make clean清除上次的make命令所产生的object文件(后缀为“.o”的文件)及可执行文件。make install将编译成功的可执行文件安装到系统目录中,一般为/u.........【阅读全文】