首页 > 编程语言 > 详细

变量传入sed,数组传入sed?

时间:2015-06-10 01:20:04      阅读:316      评论:0      收藏:0      [点我收藏+]

seq 10 > file

(1)变量传入sed如下:

[root@kuaiyun scripts]# sh 1.sh 

3

4

5

[root@kuaiyun scripts]# cat 1.sh 

#!/bin/bash

a=(1 3 5)

x=${a[1]}

y=${a[2]}

sed -n "${x},${y}p" file


(2)数组传入sed如下:


[root@kuaiyun scripts]# cat 2.sh 

#!/bin/bash

a=(1 3 5)

#echo ${a[2]}

#sed -n ‘2,4p‘ file 

sed -n "${a[1]},${a[2]}p" file 

[root@kuaiyun scripts]# sh 2.sh 

3

4

5


变量传入sed,数组传入sed?

原文:http://zlong37.blog.51cto.com/1073540/1660203

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!