博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
linux基础命令-文件查看类命令cat/tac/more/less/tail/head
阅读量:4961 次
发布时间:2019-06-12

本文共 1606 字,大约阅读时间需要 5 分钟。

cat 查看文本文件内容

-b :给每一行编号不包括空白行

-n:给所有行编号

[root@host01 tmp]# cat -An /root/anaconda-ks.cfg      1    # Kickstart file automatically generated by anaconda.$     2    $     3    #version=DEVEL$     4    install$     5    cdrom$     6    lang en_US.UTF-8$     7    keyboard us$     8    network --onboot no --device eth0 --bootproto dhcp --noipv6$     9    rootpw  --iscrypted $6$WcPbmXB0J/pnlOQB$m8f5TaBOgQ.ipHT4kkkx4eYRqfL3D629ggzC3ryVp68H8mXfhaM.eAl0J3kkmI4j0BPn20usTvMdoLxfbw1lf/$    10    firewall --service=ssh$    11    authconfig --enableshadow --passalgo=sha512$    12    selinux --enforcing$    13    timezone --utc Asia/Shanghai$    14    bootloader --location=mbr --driveorder=sda --append="crashkernel=auto rhgb quiet"$    15    # The following is the partition information you requested$    16    # Note that any partitions you deleted are not expressed$    17    # here so unless you clear all partitions first, this is$    18    # not guaranteed to work$    19    #clearpart --all --drives=sda$    20    $    21    #part /boot --fstype=ext4 --size=500$    22    #part pv.008002 --grow --size=1$    23    $    24    #volgroup vg_host01 --pesize=4096 pv.008002$    25    #logvol / --fstype=ext4 --name=lv_root --vgname=vg_host01 --grow --size=1024 --maxsize=51200$    26    #logvol swap --name=lv_swap --vgname=vg_host01 --grow --size=1984 --maxsize=1984$    27    $    28    repo --name="CentOS"  --baseurl=cdrom:sr0 --cost=100$    29    $    30    %packages --nobase$    31    @core$    32    %end[root@host01 tmp]# cat -An /root/anaconda-ks.cfg

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

-

转载于:https://www.cnblogs.com/me80/p/7406833.html

你可能感兴趣的文章
django之信号
查看>>
[noip2013]货车运输(kruskal + 树上倍增)
查看>>
简单工厂模式
查看>>
#hashMap冲突原理#详细
查看>>
基于单片机定时器---年月日时分秒的算法
查看>>
linux中IDE和SATA硬盘的区别
查看>>
关于清理缓存的解决方案
查看>>
编译时获得系统的日期和时间
查看>>
Unity3D写雷电游戏(一)
查看>>
Mybatis之使用注解开发CRUD
查看>>
C语言错误:request for member ‘xxx’ in something not a structure or union
查看>>
[LintCode] Pow(x, n) 求x的n次方
查看>>
冒泡排序逐步详解相关笔记(一)
查看>>
sql server split 分割 两种方法
查看>>
spring学习之@ModelAttribute运用详解
查看>>
语义分析应用——美通社
查看>>
数据类型及操作
查看>>
提高前端开发效率的N种方法
查看>>
第一个Vus.js
查看>>
10款最好的Python IDE
查看>>