Command
.pwd [-P]
.cd [ .. | . | - | / | ~ ]
1. 好像 ~ 不是 / 的子集 ( 对于mac 和 ubantu是)
. mkdir [ -p | m]
1.-p: create file iteratively
2.-m: give authority to this directory.Example: mkdir -m 711 test2
.rmdir [ -p ] { only can delete empty directory }
1.-p: remove directory iteratively
.which [-a]
1. [command] ( 查看命令行路径)
2. 默认只找path范围内的第一个路径
3.-a 查找所有路径
.rm [-rf]
1. -r 向下递归删除
2. -f 强制删除,不作提示 (--force)
@example
删除文件夹实例:rm -rf /var/log/httpd/access
删除文件使用实例:rm -f /var/log/httpd/access.log
. file + file's path
1. display file's style