
Linux
stuShan
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
the program javac can be found in the following packages ubuntu
在ubutnu 中安装 oracle jdk 遇到了这个问题,阅读以下两篇文章: http://www.wikihow.com/Install-Oracle-Java-JDK-on-Ubuntu-Linux http://www.mkyong.com/java/how-to-install-oracle-jdk-8-on-debian/主要是要解压完成设置完路径之后要记得设置: sudo up原创 2016-05-03 23:19:14 · 4663 阅读 · 0 评论 -
linux脚本攻略 sort,uniq,cut 命令详解
sort 命令作用NAME sort - sort lines of text filessort 常用选项和参数:选项与参数:-f :忽略大小写的差异,例如 A 与 a 视为编码相同;-b :忽略最前面的空格符部分;-M :以月份的名字来排序,例如 JAN, DEC 等等的排序方法;-n :使用『纯数字』进行排序(默认是以文字型态来排序的);-r :反向排序;-原创 2016-07-25 14:45:13 · 1788 阅读 · 0 评论 -
shell 脚本攻略-find 文件查找总结
对 find 命令的总结先看看 cat 命令ld@ubuntu:/mnt/hgfs/haShare/test$ ls -latotal 6drwxrwxrwx 1 root root 0 Jul 11 05:54 .drwxrwxrwx 1 root root 4096 Jul 11 05:36 ..-rwxrwxrwx 1 root root 79 Jul 11 05:48 fi原创 2016-07-19 18:50:30 · 3340 阅读 · 0 评论 -
shell脚本攻略- grep 文本查找总结
查找匹配的行并且显示行号ld@ubuntu:/mnt/hgfs/haShare/test$ grep 'init' -n flaskr.py38:def init_db():46:@app.cli.command('initdb')47:def initdb_command():49: init_db()ld@ubuntu:/mnt/hgfs/haShare/test$ cat -n原创 2016-07-19 18:39:28 · 2114 阅读 · 0 评论