Linux常用基本命令(more)
more命令
currenttemplate:當(dāng)前頁的模版,分頁鏈接中當(dāng)前頁往往不需要加鏈接,樣式也和其他分頁有區(qū)別,當(dāng)前頁顯示成什么html可以通過這個參數(shù)指定。[0008]根據(jù)本發(fā)明的屏幕菜單式調(diào)節(jié)方式信息的疊加方法包括:處理器經(jīng)由硬件抽象層(hardware abstraction layer,簡稱為hal)接收來自于應(yīng)用層的待顯示的osd信息,其中,osd信息包括:0sd參數(shù)和osd顯示內(nèi)容,osd參數(shù)用于控制osd顯示內(nèi)容在視頻圖像上的顯示方式。[0015]根據(jù)本發(fā)明的屏幕菜單式調(diào)節(jié)方式信息的疊加裝置包括:接收模塊linux常用命令,用于經(jīng)由硬件抽象層hal接收來自于應(yīng)用層的待顯示的屏幕菜單式調(diào)節(jié)方式osd信息linux常用命令,其中,osd信息包括:0sd參數(shù)和osd顯示內(nèi)容,osd參數(shù)用于控制osd顯示內(nèi)容在視頻圖像上的顯示方式。
more [option] [file]
-num : 每頁顯示num行
+num: 指定從num行開始
-s: 把連續(xù)的多個空行顯示為一行
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$
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--
交互子命令
空格鍵:向下滾動一屏