Linux常用基础命令

pwd显示工作目录
  1. [root@localhost ~]# pwd
  2. /root
cd 切换回家目录,注意:bash中,~表示家目录:
  1. [root@localhost ~]# cd
  2. [root@localhost ~]#
cd ~USERNAME:切换至指定用户的家目录;cd ~切换回自己的家目录; cd -:在上一次所在目录与当前目录之间来回切换;
  1. [root@localhost ~]# cd ~goodlove007
  2. [root@localhost goodlove007]#

ls 列出指定目录下的内容
  1. ls [OPTION]... [FILE]...
ls -a 显示所有文件,包括隐藏文件
  1. [root@localhost ~]# ls -a
  2. . .bash_logout .config .lesshst
  3. .. .bash_profile .cshrc original-ks.cfg
  4. anaconda-ks.cfg .bashrc .dbus .tcshrc
  5. .bash_history .cache initial-setup-ks.cfg
ls -A 显示除.和..之外的所有文件
  1. [root@localhost ~]# ls -A
  2. anaconda-ks.cfg .bash_profile .config initial-setup-ks.cfg .tcshrc
  3. .bash_history .bashrc .cshrc .lesshst
  4. .bash_logout .cache .dbus original-ks.cfg
ls -l:–long,长格式列表,即文件的详细属性信息
  1. [root@localhost ~]# ls -l
  2. total 12
  3. -rw-------. 1 root root 2949 Jun 15 18:39 anaconda-ks.cfg
  4. -rw-r--r--. 1 root root 2964 Jun 15 11:02 initial-setup-ks.cfg
  5. -rw-------. 1 root root 2066 Jun 15 18:39 original-ks.cfg
        

  1. -rw-------. 1 root root 2949 Jun 15 18:39 anaconda-ks.cfg
    -: 文件类型,-,d,b,c,l,s,p
    rw——-
    rw-:文件属主的权限;
    —:文件属组的权限;
    —:其他用户(非属主、属组)的权限;
                        1:数字表示文件被硬链接的次数;
                        root:文件的属主;
                        root:文件的属组;
                        2949:数字表示文件的大小,单位是字节
                        Jun 15 18:39 :文件最后一次被修改的时间;
                        anaconda-ks.cfg 文件名
ls -h,–human-readable:对文件大小单位换算;换算后的结果可能会非精确值;
  1. [root@localhost ~]# ls -lh
  2. total 12K
  3. -rw-------. 1 root root 2.9K Jun 15 18:39 anaconda-ks.cfg
  4. -rw-r--r--. 1 root root 2.9K Jun 15 11:02 initial-setup-ks.cfg
  5. -rw-------. 1 root root 2.1K Jun 15 18:39 original-ks.cfg
ls -d:查看目录自身而非其内部的文件列表;

  1. [root@localhost ~]# ls -d
  2. .
ls -r:逆序显示;

  1. [root@localhost ~]# ls
  2. anaconda-ks.cfg initial-setup-ks.cfg original-ks.cfg
  3. [root@localhost ~]# ls -r
  4. original-ks.cfg initial-setup-ks.cfg anaconda-ks.cfg
ls -R:递归显示;

原创文章,作者:N27_太极异次元,如若转载,请注明出处:http://www.178linux.com/78574

(0)
N27_太极异次元N27_太极异次元
上一篇 2017-06-25
下一篇 2017-06-26

相关推荐

  • 在centos6.9上实现软RAID

    在centos6.9上实现软RAID 什么是RAID?     RAID,全称Redundant Arrays of Inexpensive(Independent)Disks。简单翻译叫磁盘阵列。    通俗一点讲就是多个磁盘合成一个“阵列”来提供更好的性能、冗余,或者两者都提…

    Linux干货 2017-08-12
  • 正则表达式

    ##**正则表达式**– 正则表达式是文本处理极为重要的技术,用它可以对字符串按照某种规则进行检索、替换– 分类:– BRE:基本正则表达式,grep sed vi等软件支持。vim有扩展– ERE:扩展正则表达式,egrep(grep -E) sed -r等– PCRE:几乎所有高级语言都是PCR…

    Linux干货 2017-11-07
  • linux 加密和证书

    安全目标:机密性:明文传输的ftp, http,telnet 不安全数据完整性:身份验证:可用性:安全技术:认证,授权,安全通信,审计密码算法和协议:对称加密,公钥加密,单向加密,认证协议 1、对称加密:加密,解密使用同一个秘钥,效率高 DES:Data Encrption Standard, 56bit3DES:AES:AdvancedBlowfish缺点…

    2017-09-11
  • N22+北京+张zhangzhang+第三周作业

    1、列出当前系统上所有已经登录的用户的用户名,注意:同一个用户登录多次,则只显示一次即可。 who | cut -d" " -f1 | sort -u 2、取出最后登录到当前系统的用户的相关信息。 id `who | cut -d" " -f1 | tail -1` 3、取出当前系统上被用户当作其默认shell的最多的…

    Linux干货 2016-09-05
  • Linux进程管理常用命令(一)

    Linux系统上的进程查看及管理工具:     pstree, ps, pidof, pgrep, top, htop, glances, pmap, vmstat, dstat,kill,job,bg,fg, nohup, nice, renice, killall,…     Centos 5: Sys…

    Linux干货 2017-01-05
  • CentOS系统启动流程

       开机不是只要单击电源钮,而关机只要关掉电源钮就可以了吗?话是这样没错啦,但是由于 Linux 是一套多人多任务的操作系统,你难保你在关机时没有人在在线,如果你关机的时候碰巧一大群人在在线工作, 那会让当时在在线工作的人马上断线的!那不是害死人了!一些数据可是无价之宝。    另外 Linux 在执行的时候,虽然你…

    Linux干货 2016-09-19