访问手机版  

Linux常用命令|Linux培训学习|考试认证|工资待遇与招聘,认准超级网工!

招聘|合作 登陆|注册

网络工程师培训

当前位置:网络工程师 > 技术课程 > linux > 热点关注 > linux常用命令

Linux常用基本命令(more)

时间:2019-07-12

linux命令中的head命令_常用dos命令大全_linux常用命令

Linux常用基本命令(more)

more命令

linux命令中的head命令_常用dos命令大全_linux常用命令

currenttemplate:当前页的模版,分页链接中当前页往往不需要加链接,样式也和其他分页有区别,当前页显示成什么html可以通过这个参数指定。[0008]根据本发明的屏幕菜单式调节方式信息的叠加方法包括:处理器经由硬件抽象层(hardware abstraction layer,简称为hal)接收来自于应用层的待显示的osd信息,其中,osd信息包括:0sd参数和osd显示内容,osd参数用于控制osd显示内容在视频图像上的显示方式。[0015]根据本发明的屏幕菜单式调节方式信息的叠加装置包括:接收模块linux常用命令,用于经由硬件抽象层hal接收来自于应用层的待显示的屏幕菜单式调节方式osd信息linux常用命令,其中,osd信息包括:0sd参数和osd显示内容,osd参数用于控制osd显示内容在视频图像上的显示方式。

more [option] [file]

linux命令中的head命令_常用dos命令大全_linux常用命令

-num : 每页显示num行

+num: 指定从num行开始

linux命令中的head命令_常用dos命令大全_linux常用命令

-s: 把连续的多个空行显示为一行

ghostwu@dev:~/linux/more$ cat -n ghostwu.txt 
     1    this is ghostwu
     2    
     3    
     4    how are you
     5    
     6    
     7    file thank you
     8    file thank you
     9    file thank you
    10    file thank you
    11    file thank you
    12    file thank you
    13    file thank you
    14    file thank you
    15    file thank you
    16    file thank you
    17    file thank you
    18    
    19    
    20    
    21    and you?
ghostwu@dev:~/linux/more$ more -s ghostwu.txt 
this is ghostwu
how are you
file thank you
file thank you
file thank you
file thank you
file thank you
file thank you
file thank you
file thank you
file thank you
file thank you
file thank you
and you?
ghostwu@dev:~/linux/more$ 

常用dos命令大全_linux常用命令_linux命令中的head命令

ghostwu@dev:~/shell_script$ more -10 install.sh 
#!/bin/bash
PATH=/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin:~/bin
export PATH
LANG=en_US.UTF-8
is64bit=`getconf LONG_BIT`
if [ "$is64bit" = '32' ];then
    echo '=================================================';
    echo -e "\033[31m BT-Panel Incompatible 32 bit OS. \033[0m";
    exit;
--More--(2%)
ghostwu@dev:~/linux/more$ ls / | more -10
bin
boot
cdrom
dev
etc
home
initrd.img
lib
lib64
lost+found
--More--

交互子命令

空格键:向下滚动一屏