首页 > 其他 > 详细

文件与目录管理

时间:2019-10-07 23:59:03      阅读:159      评论:0      收藏:0      [点我收藏+]

文件与目录管理

?? Written by Zak Zhu

参考

cd命令

. # 当前目录

.. # 上一层目录

- # 前一个工作目录

~ # 当前用户的家目录

~zac # zac用户的家目录

pwd命令

Print the name of the current Working Directory.

ls命令

Usage:
    ls [OPTION]... [FILE]...
Options:
    -a, --all
    -d, --directory
    -h, --human-readable
    -l

stat命令

  1. e.g. stat home/

    技术分享图片

  2. e.g. stat -t home/

    技术分享图片

tree命令

yum install tree -y

Usage:
    tree [OPTION]... DIRECTORY
Options:
    -C              # turn colorization on always
    -L level        # Descend only level directories deep
    -d              # List directory only

cp命令

Usage:
    cp [OPTION]... SOURCE DEST
Options:
    -a, --archive       # same as -dR, --preserve=all
    -r, --recursive     # copy directories recursively
    -u, --update        # copy only when the SOURCE file is newer than the destination file
    -v, --verbose

rm命令

rm [FILE]... -rf

mv命令

Usage:
    mv [OPTION]... SOURCE DEST
Options:
    -u, --update    # move only when the SOURCE file is newer than the destination file
    -v, --verbose

touch命令

创建新文件或修改文件时间

mkdir命令

mkdir [-p, --parents] [-v, --verbose] DIRECRORY...

文件与目录管理

原文:https://www.cnblogs.com/zakzhu/p/11632990.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!