Catalog 目录

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 [command] ( 查看命令行路径)

.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

. whereis [-bmsu]

  查找文件或目录

. locate + filename

. find

1. 有很多不同的参数用于查询

. Ls

1. 9805页 44%

2. ls -|a*

  ls | grep -n '^a.*'

你可能感兴趣的:(Catalog 目录)