less :分页查看 

    格式:   less  filename
 
grep :按指定条件查看文件
   格式:  grep [options] 条件 文件名
                option       -i  不区分大小写
                                 -n  显示在文件内部对应的行号
                                 -v   不包含  (排除)
                           
cat  :直接查看
     格式: cat  [options] filename
                   option    -n     显示行号
 
 tail  :查看文件的后N行  N默认为10
     格式 :   tail [options] filename
 
head :查看文件的前N行,N默认为10
     head [options] filename
         option   -n  显示n行
 
cut : 显示特定的字段
        cut [options] filename
                 option   -f   显示指定字段
                              -d 发某个特定字符分割
                               -c x-y  显示每一行的x-y的字符
 
wc  :统计命令
        格式 :  wc [options] filename
                         option     -l  统计行号
                                        -w 统计单词数
                                        -c  统计字节数
                                        -m  统计字符数
 
sort  :文件整理
            格式:  sort [options] filename
                          option    -r   由下往上整理
                                        -n   按数字大小排序
                                        -f   忽略字符大小写,由上向下排序
                                        -u     删除重复行
                                        -t   c  以c为分界符显示
 
diff   :文件比对
           格式:   diff  filename1  filename2
 
aspell :语法检查,  拼写错误检查
                格式:   aspell check filename
 
tr  :字母大小写转换
              格式  :tr  原字母 转换字母