less命令

less命令来自 MenAngel 每日学习一个命令博主分享:https://www.cnblogs.com/MenAngel/p/5473332.html less命令的作用与more十分相似,都可以用来浏览文字档案的内容,不同的是less命令允许用户向前或向后浏览文件,而more命令只能向前浏览。 用les

来自

MenAngel  每日学习一个命令博主分享:https://www.cnblogs.com/MenAngel/p/5473332.html

less命令的作用与more十分相似,都可以用来浏览文字档案的内容,不同的是less命令允许用户向前或向后浏览文件,而more命令只能向前浏览。

    用less命令显示文件时,用PageUp键向上翻页,用PageDown键向下翻页。要退出less程序,应按Q键。

 

    (1)用法:

    用法: less  [选项参数] [文件参数]

    (2)功能:

    功能: less 与more命令类似,但可以通过翻页键查看上下页的内容

    (3)选项参数:

    1) -e:                                               文件内容显示完毕后,自动退出

    2) -f:                                                强制显示文件

  3) -g:                                               不加亮显示搜索到的所有关键词,仅显示当前显示的关键字,以提高显示速度

  4) -l:                                                搜索时忽略大小写的差异

  5) -N:                                               每一行行首显示行号

    6) -s:                                               将连续多个空行压缩成一行显示

  7) -S:                                               在单行显示较长的内容,而不换行显示

  8) -x<数字>:                                     将TAB字符显示为指定个数的空格字符。

 

    (4)实例:

      1)[root@localhost Documents]# less  less_text                  在另一个进程页面中显示文本内容,按q键退出                    

[root@localhost Documents]# mv more_text1 less_text    //将more_text1改名为less_text
[root@localhost Documents]# ll
总用量 4
-rw-r--r--. 1 root root 664 5月   9 07:59 less_text
[root@localhost Documents]# cat less_text    //在当前终端中显示(和less命令显示的效果还是有差别的)
复制代码
[root@localhost Documents]# less less_text   //在另一个页面中显示文本
I am studing orders of Linux!
I am trying to write as many as lines of text!


No matter how low you consider yourself,
there is always someone looking behind you,
hoping that they were that high!

Something you want keep all the time,always you will lose!

Never forget to say "thanks"!

Hppay today,also,prepared for happiness in the future!

Don't aim your success if you want it,just do what you love and believe and finally you will success!

Maybe you can be laze man like a pig,but you can't feel free as it!

I am a college school student!
I am planning to live and work in hangzhou or guangzhou!
I am from hefei anhui!
Enough,I have write too many words!
(END)
复制代码

      2)[root@localhost Documents]# ps -ef |less      显示已有进程信息

复制代码
ID         PID   PPID  C STIME TTY          TIME CMD
root          1      0  0 00:16 ?        00:00:10 /usr/lib/systemd/systemd --switched-root --system --deserialize 24
root          2      0  0 00:16 ?        00:00:00 [kthreadd]
root          3      2  0 00:16 ?        00:00:03 [ksoftirqd/0]
root          5      2  0 00:16 ?        00:00:00 [kworker/0:0H]
root          7      2  0 00:16 ?        00:00:00 [migration/0]
root          8      2  0 00:16 ?        00:00:00 [rcu_bh]
root          9      2  0 00:16 ?        00:00:00 [rcuob/0]
root         10      2  0 00:16 ?        00:00:00 [rcuob/1]
root         11      2  0 00:16 ?        00:00:00 [rcuob/2]
root         12      2  0 00:16 ?        00:00:00 [rcuob/3]
root         13      2  0 00:16 ?        00:00:00 [rcuob/4]
root         14      2  0 00:16 ?        00:00:00 [rcuob/5]
root         15      2  0 00:16 ?        00:00:00 [rcuob/6]
root         16      2  0 00:16 ?        00:00:00 [rcuob/7]
root         17      2  0 00:16 ?        00:00:00 [rcuob/8]
root         18      2  0 00:16 ?        00:00:00 [rcuob/9]
root         19      2  0 00:16 ?        00:00:00 [rcuob/10]
root         20      2  0 00:16 ?        00:00:00 [rcuob/11]
root         21      2  0 00:16 ?        00:00:00 [rcuob/12]
root         22      2  0 00:16 ?        00:00:00 [rcuob/13]
root         23      2  0 00:16 ?        00:00:00 [rcuob/14]
root         24      2  0 00:16 ?        00:00:00 [rcuob/15]
root         25      2  0 00:16 ?        00:00:00 [rcuob/16]
root         26      2  0 00:16 ?        00:00:00 [rcuob/17]
root         27      2  0 00:16 ?        00:00:00 [rcuob/18]
root         28      2  0 00:16 ?        00:00:00 [rcuob/19]
root         29      2  0 00:16 ?        00:00:00 [rcuob/20]
root         30      2  0 00:16 ?        00:00:00 [rcuob/21]
root         31      2  0 00:16 ?        00:00:00 [rcuob/22]
root         32      2  0 00:16 ?        00:00:00 [rcuob/23]
root         33      2  0 00:16 ?        00:00:00 [rcuob/24]
root         34      2  0 00:16 ?        00:00:00 [rcuob/25]
root         35      2  0 00:16 ?        00:00:00 [rcuob/26]
:
.......//还有很多没有显示
复制代码

      3)[root@localhost Documents]# history | less               显示历史输入的进程信息

复制代码
    1  touch touch_test /home/sunjimeng/Document
    2  cd /home/sunjimeng/Document
    3  ll
    4  cd /
    5  touch touch_text /home/sunjimeng/Document/touch_test
    6  cd /home/sunjimeng/Document
    7  ll
    8  rm touch_test
    9  cd /
   10  ls -l /home/sunjimeng/Document
   11  touch /home/sunjimeng/Document/touch_test_file
   12  cd home/sunjimeng/Document
   13  ll
   14  touch touch_test_file
   15  ll
   16  touch -t 06061806 touch_test_file
   17  ll
   18  touch touch_test_file
   19  ll
   20  touch -t 06061806 touch_test_file
   21  ll
   22  touch touch_test_file2
   23  ll
   24  touch -r touch_testfile touch_test_tile2
   25  touch -r touch_test_file touch_test_file2
   26  ll
   27  touch -d "10 day ago" touch_test_file2
   28  ll
   29  touch -r touch_test_file touch_test_file2
   30  ll
   31  touch -d "10 days ago" touch_test_file2
   32  ll
   33  touch "10 days ago" touch_test_file
   34  ll
:
复制代码

      4)[root@localhost Documents]# less less1 less2                          查看多个文件(怎么切换下一个还不清楚)

复制代码
root@localhost Documents]# cat >less1 <<EOF
> Lost means Get!
> 
> No losing No getting!
> 
> End!
> EOF
[root@localhost Documents]# cat >less2 <<EOF
> If you want keep,you always lose!
> 
> Certainly It is!
> End!
> EOF
[root@localhost Documents]# ll
总用量 12
-rw-r--r--. 1 root root  45 5月   9 08:15 less1
-rw-r--r--. 1 root root  57 5月   9 08:16 less2
-rw-r--r--. 1 root root 664 5月   9 07:59 less_text
[root@localhost Documents]# less less1 less2
复制代码
复制代码
Lost means Get!

No losing No getting!

End!
less1 (file 1 of 2) (END) - Next: less2

复制代码

     5)[sunjimeng@localhost ~]$ netstat -tpnl |less      在另一个进程页面中分页显示信息,这里显示的是网络信息

复制代码
[sunjimeng@localhost ~]$ netstat -tpnl |less
(Not all processes could be identified, non-owned process info will not be shown, you would have to be root to see it all.) Active Internet connections (only servers) Proto Recv-Q Send-Q Local Address Foreign Address State PID/Program name tcp 0 0 0.0.0.0:22 0.0.0.0:* LISTEN - tcp 0 0 127.0.0.1:631 0.0.0.0:* LISTEN - tcp 0 0 127.0.0.1:25 0.0.0.0:* LISTEN - tcp6 0 0 :::22 :::* LISTEN - tcp6 0 0 ::1:631 :::* LISTEN - tcp6 0 0 ::1:25 :::* LISTEN -
复制代码

 

    (5)其他:

  1.全屏导航

  ctrl + F – 向前移动一屏

    ctrl + B – 向后移动一屏

  ctrl + D – 向前移动半屏

  ctrl + U – 向后移动半屏

 

  2.单行导航

  j – 向前移动一行

  k – 向后移动一行

 

  3.其它导航

  G – 移动到最后一行

  g – 移动到第一行 

  q / ZZ – 退出 less 命令

 

  4.其它有用的命令

  v – 使用配置的编辑器编辑当前文件

  h – 显示 less 的帮助文档

  &pattern – 仅显示匹配模式的行,而不是整个文件

 

  5.标记导航

  当使用 less 查看大文件时,可以在任何一个位置作标记,可以通过命令导航到标有特定标记的文本位置:

  ma – 使用 a 标记文本的当前位置

  ’a – 导航到标记 a 处

今天的文章less命令分享到此就结束了,感谢您的阅读,如果确实帮到您,您可以动动手指转发给其他人。

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
如需转载请保留出处:https://bianchenghao.cn/56893.html

(0)
编程小号编程小号
上一篇 2023-08-26 10:46
下一篇 2023-08-26

相关推荐

发表回复

您的电子邮箱地址不会被公开。 必填项已用*标注