shell中向sed命令传递变量

前端之家收集整理的这篇文章主要介绍了shell中向sed命令传递变量前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

shell中向sed命令传递变量

标签 shellnewlin http://blog.csdn.net/yizhizouxiaqu/article/details/7367520
7369人阅读 评论(0) 收藏 举报
分类

使用shell中的sed命令时,发现不能把shell定义的变量传递进去,

shell命令如下:

sed -n ’${fileLength[$j]},$newline p‘ ${fileName[$j]} >> all.log

发现只需要将sed -n '${fileLength[$j]},$newline p' ${fileName[$j]} >> all.log

中的单引号,改成双引号就可以了。

sed -n "${fileLength[$j]},$newline p" ${fileName[$j]} >> all.log


awk中传递变量

http://www.jb51.cc/article/p-wknjtmch-sa.html

原文链接:https://www.f2er.com/bash/391873.html

猜你在找的Bash相关文章