wiki
介紹
1.
C语言
1.1.
C语言概述
1.2.
基本数据类型
1.3.
输入与输出
1.4.
内存管理
2.
Linux
2.1.
Linux概述
2.2.
Git
2.3.
GCC
2.4.
POSIX
2.4.1.
POSIX之opendir
2.5.
Shell
2.5.1.
文件管理
3.
StyleGuide
3.1.
华为C语言编程规范
3.2.
Google C++ Open Source Project Style Guide
3.2.1.
Index
3.2.2.
Header Files
3.2.3.
Scoping
3.2.4.
Classes
3.2.5.
Functions
3.2.6.
Google-Specific Magic
3.2.7.
Other C++ Features
3.2.8.
Naming
3.2.9.
Comments
3.2.10.
Formatting
3.2.11.
Exceptions to the Rule
3.2.12.
End
3.3.
Google C++ 开源项目风格指南
3.3.1.
扉页
3.3.2.
头文件
4.
Algorithms
4.1.
Algorithms概述
5.
Links
5.1.
Links
Powered by
GitBook
wiki
文件及目录管理
列出目录项
列出目录:
dir
列出目录:
ls
当前目录:
pwd
目录切换:
cd
切换到上一次工作目录:
cd -
切换到home目录:
cd
或
cd ~
创建和删除
创建文件:
touch
创建目录:
mkdir
删除:
rm
移动:
mv
复制:
cp
复制文件:
cp sourcefile destfile
复制目录:
cp -r sourcedir destdir