Chinaunix首页 | 论坛 | 博客
  • 博客访问: 1450473
  • 博文数量: 150
  • 博客积分: 65
  • 博客等级: 民兵
  • 技术积分: 3415
  • 用 户 组: 普通用户
  • 注册时间: 2011-02-25 10:30
个人简介

游戏后台开发

文章分类

全部博文(150)

文章存档

2020年(1)

2019年(4)

2017年(3)

2016年(6)

2015年(4)

2014年(45)

2013年(86)

2012年(1)

发布时间:2013-10-30 17:43:39

NAME     split - split a file into piecesDESCRIPTION     The split utility reads file and writes it in linecount-line     pieces  into  a  set  of output-files. The name of the first     output-file is name with aa.........【阅读全文】

阅读(1152) | 评论(0) | 转发(0)

发布时间:2013-10-30 17:35:50

vi、touch是创建文件的命令vi foo.txt cp、mv也算是吧,因为cp是拷贝文件,mv是移动文件另外还有好多命令能够创建文件,之要该命令能够重定向输出到一个不存在的文件,就会创建文件。例如tail -f -n 200 /usr/local/tomcat/logs/catalina.out > /tmp/tomcatlog.log //将tomcat日志文件的最后200行内容写入到/t.........【阅读全文】

阅读(1475) | 评论(0) | 转发(0)

发布时间:2013-10-30 17:28:31

fg、bg、jobs、&、ctrl + z都是跟系统任务有关的,虽然现在基本上不怎么需要用到这些命令,但学会了也是很实用的一。& 最经常被用到   这个用在一个命令的最后,可以把这个命令放到后台执行二。ctrl + z     可以将一个正在前台执行的命令放到后台,并且暂停三。jobs   .........【阅读全文】

阅读(1091) | 评论(0) | 转发(0)
man

发布时间:2013-10-30 17:05:32

Location of Manual Pages     The online Reference Manual page directories are convention-     ally  located  in  /usr/share/man.  The  nroff  sources  are     located in the /usr/share/man/man*  directories. &nbs.........【阅读全文】

阅读(1019) | 评论(0) | 转发(0)

发布时间:2013-10-30 16:31:28

将当前目录下的documents目录打包,但不希望tar占用太多CPU:nice -19 tar zcf pack.tar.gz documents这个“-19”中的“-”仅表示参数前缀;所以,如果希望赋予tar进程最高的优先级,则执行:nice --19 tar zcf pack.tar.gz documents也可修改已经存在的进程的优先级:将PID为1799的进程优先级设置为.........【阅读全文】

阅读(5828) | 评论(0) | 转发(2)
给主人留下些什么吧!~~
留言热议
请登录后留言。

登录 注册