linux

2020-09-10  本文已影响0人  jiarf

取出某几行linux

一、从第3000行开始,显示1000行。即显示3000~3999行

cat filename | tail -n +3000 | head -n 1000

二、显示1000行到3000行

cat filename| head -n 3000 | tail -n +1000

注意两种方法的顺序

分解:

tail -n 1000:显示最后1000行

tail -n +1000:从1000行开始显示,显示1000行以后的

head -n 1000:显示前面1000行

三、用sed命令

sed -n '5,10p' filename 这样就可以只查看文件的第5行到第10行。

1.去除首尾不需要的字符(python)

a='"This is test string"'# strip()会默认去除'\n','\r','\t',' ',制表回车换行和空格等字符

a.strip('"')

'This is test string'

b =' This is another string '#首尾两个空格

b.strip(' ')

'This is another string'

b.strip()

'This is another string'# 默认去除

c ='*This is an-another string/'# 首尾两个字符

c.strip('*/') #这里strip将解析每一个字符,检查首尾是否存在,存在就去除返回

'This is an-another string'

d ='//This is the last string**'

d.strip('*/')

d ='This is the last string'# 持续去除首尾的指定字符符号

e ='einstance'

e.strip('e') # 去除首尾特定字符

'instanc'

2.去除末尾特定字符

a =' example '

a.lstrip() #默认去除开头的空格\n,\t,\r

'example '

b ='athis is mya'

b.lstrip('a') #去除末尾特定字符

'this is mya’

3.去除开头特定字符

a =' example '

a.lstrip() #默认去除开头的空格\n,\t,\r

'example '

b ='athis is mya'

b.lstrip('a') #去除末尾特定字符

'this is mya'

4.去除字符串中的特定字符

使用字符串replace()方法,将目标字符替换为空

a ='this is the test'

a.replace('t','')

'his is he es'

第二种方法使用正则表达式方法

importre

re.sub('s','', a)

'thi i the tet'

5.Linux下的tar压缩解压缩命令详解

tar

-c: 建立压缩档案

-x:解压

-t:查看内容

-r:向压缩归档文件末尾追加文件

-u:更新原压缩包中的文件

这五个是独立的命令,压缩解压都要用到其中一个,可以和别的命令连用但只能用其中一个。下面的参数是根据需要在压缩或解压档案时可选的。

-z:有gzip属性的

-j:有bz2属性的

-Z:有compress属性的

-v:显示所有过程

-O:将文件解开到标准输出

下面的参数-f是必须的

-f: 使用档案名字,切记,这个参数是最后一个参数,后面只能接档案名。

tar -cf all.tar *.jpg

这条命令是将所有.jpg的文件打成一个名为all.tar的包。-c是表示产生新的包,-f指定包的文件名。

tar -rf all.tar *.gif

这条命令是将所有.gif的文件增加到all.tar的包里面去。-r是表示增加文件的意思。

tar -uf all.tar logo.gif

这条命令是更新原来tar包all.tar中logo.gif文件,-u是表示更新文件的意思。

tar -tf all.tar

这条命令是列出all.tar包中所有文件,-t是列出文件的意思

tar -xf all.tar

这条命令是解出all.tar包中所有文件,-t是解开的意思

压缩

tar -cvf jpg.tar *.jpg //将目录里所有jpg文件打包成jpg.tar

tar -czf jpg.tar.gz *.jpg //将目录里所有jpg文件打包成jpg.tar后,并且将其用gzip压缩,生成一个gzip压缩过的包,命名为jpg.tar.gz

tar -cjf jpg.tar.bz2 *.jpg //将目录里所有jpg文件打包成jpg.tar后,并且将其用bzip2压缩,生成一个bzip2压缩过的包,命名为jpg.tar.bz2

tar -cZf jpg.tar.Z *.jpg //将目录里所有jpg文件打包成jpg.tar后,并且将其用compress压缩,生成一个umcompress压缩过的包,命名为jpg.tar.Z

rar a jpg.rar *.jpg //rar格式的压缩,需要先下载rar for linux

zip jpg.zip *.jpg //zip格式的压缩,需要先下载zip for linux

解压

tar -xvf file.tar //解压 tar包

tar -xzvf file.tar.gz //解压tar.gz

tar -xjvf file.tar.bz2 //解压 tar.bz2

tar -xZvf file.tar.Z //解压tar.Z

unrar e file.rar //解压rar

unzip file.zip //解压zip

总结

1、*.tar 用 tar -xvf 解压

2、*.gz 用 gzip -d或者gunzip 解压

3、.tar.gz和.tgz 用 tar -xzf 解压

4、*.bz2 用 bzip2 -d或者用bunzip2 解压

5、*.tar.bz2用tar -xjf 解压

6、*.Z 用 uncompress 解压

7、*.tar.Z 用tar -xZf 解压

8、*.rar 用 unrar e解压

9、*.zip 用 unzip 解压

#6。zip压缩

zip ana.zip anaconda-ks.cfg

image

7.Linux压缩打包命令——tar、zip、unzip

https://blog.csdn.net/weixin_44901564/article/details/99682926?utm_medium=distribute.pc_relevant.none-task-blog-BlogCommendFromMachineLearnPai2-1.channel_param&depth_1-utm_source=distribute.pc_relevant.none-task-blog-BlogCommendFromMachineLearnPai2-1.channel_param

8.tar

将文件打包为tar包:1.仅打包,不压缩,tar -cvf log.ta log.log

2.打包后以gzip压缩:tar -zcvf log.tar.gz log.log

3.打包后以bzip2压缩:tar -jcvf log.tar.bz2 log.log

查阅上述tar包内有哪些文件

tar -ztvf log.tar.gz,由于我们使用 gzip 压缩的log.tar.gz,所以要查阅log.tar.gz包内的文件时,就得要加上z这个选项了。

将tar包解压缩

tar -zxvf /opt/soft/test/log.tar.gz

gzip命令用来压缩文件

把test6目录下的每个文件压缩成.gz文件

gzip *

gzip log.log

上一篇下一篇

猜你喜欢

热点阅读