terminal
往事也加
ru yu de shui
展开
-
mac terminal终端打开指定文件夹 当前文件夹打开terminal
terminal终端打开指定文件夹在Terminal中输入命令: open . #表示打开当前文件夹open /home/test #表示从终端打开/home/test文件夹当前文件夹打开terminal System Preferences -> Keyboard -> Shortcuts -> Services -> New Ter原创 2016-07-10 20:01:42 · 47658 阅读 · 1 评论 -
ubuntu/linux terminal打开指定文件夹 当前文件夹打开终端
当前文件夹打开终端1.先要找到终端才行:2.打开终端后,去安装:?123456789101112131415161718crifan@ubuntu:~$sudoapt-转载 2016-07-10 20:07:24 · 20407 阅读 · 0 评论 -
GCC编程四个过程:预处理-编译-汇编-链接
Here are the different stages using gccgcc -E --> Preprocessor, but don't compile> $gcc -E test.c -o test.igcc -S --> Compile but don't assemble> $gcc -S test.i -o test.sgcc -c --> assemble but don'翻译 2016-07-31 23:44:37 · 988 阅读 · 0 评论