• 三、基本命令


    三、基本命令

    1、cd 命令

    [root@iZbp1g3zb15nr77gr5reegZ /]# cd /usr					#进入单层目录	
    [root@iZbp1g3zb15nr77gr5reegZ usr]# cd ..					#退出所在目录
    [root@iZbp1g3zb15nr77gr5reegZ /]# cd /usr/bin				#进入多层目录
    [root@iZbp1g3zb15nr77gr5reegZ bin]#clear					#清除命令行窗口
    

    2、ls 命令

    [root@iZbp1g3zb15nr77gr5reegZ usr]# ls						#查看当前目录下面的内容
    bin  etc  games  include  lib  lib64  libexec  local  sbin  share  src  tmp
    [root@iZbp1g3zb15nr77gr5reegZ usr]# ls -ll					#查看当前目录下面的内容(列表形式)
    total 84
    dr-xr-xr-x.  2 root root 20480 Nov 30  2021 bin
    drwxr-xr-x.  2 root root  4096 Apr 11  2018 etc
    drwxr-xr-x.  2 root root  4096 Apr 11  2018 games
    drwxr-xr-x.  4 root root  4096 Apr 26  2020 include
    dr-xr-xr-x. 29 root root  4096 Apr 26  2020 lib
    dr-xr-xr-x. 39 root root 20480 Apr 26  2020 lib64
    drwxr-xr-x. 22 root root  4096 Apr 26  2020 libexec
    drwxr-xr-x. 13 root root  4096 Apr 26  2020 local
    dr-xr-xr-x.  2 root root 12288 Sep 18 21:38 sbin
    drwxr-xr-x. 77 root root  4096 Apr 26  2020 share
    drwxr-xr-x.  4 root root  4096 Apr 26  2020 src
    lrwxrwxrwx.  1 root root    10 Apr 26  2020 tmp -> ../var/tmp
    [root@iZbp1g3zb15nr77gr5reegZ usr]# ls -al		#查看当前目录下面的所有内容包括隐藏文件(列表形式)
    total 92
    drwxr-xr-x. 13 root root  4096 Apr 26  2020 .
    dr-xr-xr-x. 18 root root  4096 Sep 19 14:50 ..
    dr-xr-xr-x.  2 root root 20480 Nov 30  2021 bin
    drwxr-xr-x.  2 root root  4096 Apr 11  2018 etc
    drwxr-xr-x.  2 root root  4096 Apr 11  2018 games
    drwxr-xr-x.  4 root root  4096 Apr 26  2020 include
    dr-xr-xr-x. 29 root root  4096 Apr 26  2020 lib
    dr-xr-xr-x. 39 root root 20480 Apr 26  2020 lib64
    drwxr-xr-x. 22 root root  4096 Apr 26  2020 libexec
    drwxr-xr-x. 13 root root  4096 Apr 26  2020 local
    dr-xr-xr-x.  2 root root 12288 Sep 18 21:38 sbin
    drwxr-xr-x. 77 root root  4096 Apr 26  2020 share
    drwxr-xr-x.  4 root root  4096 Apr 26  2020 src
    lrwxrwxrwx.  1 root root    10 Apr 26  2020 tmp -> ../var/tmp
    

    3、pwd 命令

    [root@iZbp1g3zb15nr77gr5reegZ usr]# pwd					#查看当前所在目录
    /usr
    
    

    4、mkdir 命令

    [root@iZbp1g3zb15nr77gr5reegZ home]# mkdir lzb					#创建目录
    [root@iZbp1g3zb15nr77gr5reegZ home]# mkdir -p lzb2/test/output	#创建多级目录
    [root@iZbp1g3zb15nr77gr5reegZ home]# ls -ll
    total 8
    drwxr-xr-x 2 root root 4096 Sep 19 16:48 lzb
    drwxr-xr-x 3 root root 4096 Sep 19 16:50 lzb2
    

    5、rmdir 命令

    [root@iZbp1g3zb15nr77gr5reegZ home]# rmdir lzb						#移除单个文件夹
    [root@iZbp1g3zb15nr77gr5reegZ home]# rmdir -p lzb2/test/output		#移除多层文件夹
    

    6、cp 命令

    [root@iZbp1g3zb15nr77gr5reegZ home]# cp Maven.md test	#拷贝文件到指定文件夹
    [root@iZbp1g3zb15nr77gr5reegZ home]# cp Maven.md test		
    cp: overwrite ‘test/Maven.md’? y						#如果文件夹中已经存在,则输入y可以重写
    [root@iZbp1g3zb15nr77gr5reegZ home]# 
    
    

    7、rm 命令

    [root@iZbp1g3zb15nr77gr5reegZ test]# rm Maven.md 		#移除文件
    rm: remove regular file ‘Maven.md’? y
    [root@iZbp1g3zb15nr77gr5reegZ home]# rm -f test			#强制移除文件
    [root@iZbp1g3zb15nr77gr5reegZ home]# rm -r tset/test01/test02	#移除多层文件
    rm: remove directory ‘tset/test01/test02’? y
    

    8、mv 命令

    [root@iZbp1g3zb15nr77gr5reegZ home]# mv Maven.md tset/		#移动文件到指定文件夹
    [root@iZbp1g3zb15nr77gr5reegZ home]# mv tset test03			#重命名文件夹
    
  • 相关阅读:
    计算机网络重点概念整理-第五章 传输层【期末复习|考研复习】
    第2-3-6章 打包批量下载附件的接口开发-文件存储服务系统-nginx/fastDFS/minio/阿里云oss/七牛云oss
    【信创】 银河麒麟 软件目录及 常见问题汇总(持续更新)
    [Linux] yum安装软件
    Gin 笔记(06)— 设置不同启动模式、优雅启动和关闭、运行多个不同端口的服务进程
    2022年度C语言面试题库汇编(含完整答案)
    【XInput】手柄模拟鼠标运作之 .NET P/Invoke 和 UWP-API 方案
    动态规划(算法竞赛、蓝桥杯)--概率DP求概率
    J2EE进阶(二)从零开始之Struts2_j2eestruts2
    search——single list
  • 原文地址:https://blog.csdn.net/weixin_48312484/article/details/127039182