Linux
楼边斜月为明
学习记录,出错之处,还望指出
展开
-
linu学习笔记(3)-shell常用命令
0. ls 查看指定目录所包含的内容 ls -l 详细 find /dev hd* cat -n hellword.c 显示文件内容,加行号 cat xxx.txt > yyy.txt 将一个文件连接到另外一个文件 再cat yyy.txt 会在末尾显示xxx.txt 的内原创 2015-10-05 23:13:25 · 396 阅读 · 0 评论 -
linu学习笔记(2)-shell命令简介
1. ubuntu默认启动7个shell终端(可以用ctrl+alt+(F1~F6)启动),x windows 可用alt+F7来启动2. 命令格式: $ 命令 选项 参数 $为普通用户,#为root用户(超级用户)sudo* 代表任意长度的字符串 文件名中 .和 / 必须是显示的。*不能匹配.c ,只有.*才能匹配.c。? 代表任何原创 2015-10-05 21:04:14 · 437 阅读 · 0 评论 -
windows 下用 easybcd修复ubuntu15.04启动项
添加条目,linux/bsd , grub2 ,添加条目,这样就行了。原创 2015-09-20 19:58:12 · 978 阅读 · 0 评论 -
makefile教程
转载:http://www.ruanyifeng.com/blog/2015/02/make.html http://www.cs.colby.edu/maxwell/courses/tutorials/maketutor/Makefiles are a simple way to organize code compilation. This tutorial does not even scr转载 2016-11-20 12:22:16 · 400 阅读 · 0 评论 -
make 变量
10.3 Variables Used by Implicit RulesThe recipes in built-in implicit rules make liberal use of certain predefined variables. You can alter the values of these variables in the makefile, with arguments转载 2016-11-20 20:42:04 · 329 阅读 · 0 评论 -
make $()用法
10.5.3 Automatic VariablesSuppose you are writing a pattern rule to compile a ‘.c’ file into a ‘.o’ file: how do you write the ‘cc’ command so that it operates on the right source file name? You cannot转载 2016-11-20 20:49:31 · 765 阅读 · 0 评论 -
scp 跨机远程拷贝
转载:http://linuxtools-rst.readthedocs.io/zh_CN/latest/tool/scp.html scp 跨机远程拷贝scp是secure copy的简写,用于在Linux下进行远程拷贝文件的命令,和它类似的命令有cp,不过cp只是在本机进行拷贝不能跨服务器,而且scp传输是加密的。当你服务器硬盘变为只读 read only system时,用scp可以帮你把文转载 2016-12-08 09:58:27 · 318 阅读 · 0 评论 -
System.out.println(System.getenv("PATH"));
目前只知道: /etc/profile 里的环境变量才这个函数打印出的路径里 /etc/bash.bashrc都不行。/etc/profile必须重启或注销之后才可以使用新加入的变量source /etc/profile 只会使得当前终端生效,再开一个新的终端是没有该变量的。必须重启和注销之后所有终端才有该终端。原创 2017-11-19 11:19:55 · 488 阅读 · 0 评论 -
linux定时管理
https://blog.csdn.net/brad_chen/article/details/50318297https://blog.csdn.net/ethanzhao/article/details/4406017https://linuxtools-rst.readthedocs.io/zh_CN/latest/tool/crontab.html原创 2018-12-21 16:32:53 · 155 阅读 · 0 评论