输入输出重定向 1,输入输出重定向,是针对过滤器的,不针对,编辑器和交互工具
2,>号只把正确的标准输出重定向,输出错误信息,可以用2>
3,新建或清空文件可以直接用>filename,>和2>都会清空目标文件 4,&>号可以把正确信息和错误信息全部输出重定向6
5,>>可以把重定向追加到目标文件 ...
分类:
系统相关 时间:
2014-05-27 02:23:02
阅读次数:
272
Nginx支持伪静态(在 nginx.conf 中 修改如下)参考链接location / {
index index.html index.php; if (-d $request_filename){ rewrite ^/(.*)([^/...
分类:
其他好文 时间:
2014-05-24 03:02:12
阅读次数:
266
.tar解包:tar xvf FileName.tar打包:tar cvf FileName.tar
DirName(注:tar是打包,不是压缩!)———————————————.gz解压1:gunzip FileName.gz解压2:gzip -d
FileName.gz压缩:gzip FileN...
分类:
系统相关 时间:
2014-05-24 01:06:14
阅读次数:
352
private static string CmdPing(string strIp){Process
p = new Process(); p.StartInfo.FileName =
"cmd.exe";//设定程序名p.StartInfo.UseShellExecute = false; //...
分类:
其他好文 时间:
2014-05-24 00:42:36
阅读次数:
481
题目比较简单,这里就不写分析过程了,直接看代码就能看懂/* *
=====================================================================================
* * Filename: NOIP1996fam...
分类:
其他好文 时间:
2014-05-24 00:36:23
阅读次数:
496
import matplotlib.pyplot as pltimport numpy as
npimport timefrom django.template.defaultfilters import centerdef
loadDataSet(fileName): dataMat=[] fr=...
分类:
其他好文 时间:
2014-05-23 23:50:16
阅读次数:
471
标准的01背包,就不写分析了,标准就看 我的背包问题的解析/**
=====================================================================================**
Filename: noippujizhuangxiang...
分类:
其他好文 时间:
2014-05-23 23:22:36
阅读次数:
297
-e filename 如果 filename存在,则为真-d filename 如果
filename为目录,则为真 -f filename 如果 filename为常规文件,则为真-L filename 如果
filename为符号链接,则为真-r filename 如果 filename可读,...
分类:
其他好文 时间:
2014-05-19 16:04:14
阅读次数:
304
a)
通用选项
-L license
-h 帮助
-fromats 显示可用的格式,编解码的,协议的...
-f fmt 强迫采用格式fmt
-I filename 输入文件
-y 覆盖输出文件
-t duration 设置纪录时间 hh:mm:ss[.xxx]格式的记录时间也支持
-ss position 搜索到指定的时间 [-]hh:mm:ss[.xxx]的...
分类:
其他好文 时间:
2014-05-18 09:38:30
阅读次数:
303
class file_send
{
public:
SOCKET send_s; //The socket that used for sending which is established previously
char * filename; //The full path of the file that the client...