当前位置:  技术问答>linux和unix

用sed插入行的问题

    来源: 互联网  发布时间:2017-04-15

    本文导语:  代码如下: cat test.txt this is a test hello world this is a test #!/bin/ksh set -x ROWNUM=`grep -n "hello world" test.txt|cut -c 1-5` sed '${ROWNUM}i       * debug              DISPLAY 'new hello world'       * debug  ' Test.txt...

代码如下:
cat test.txt
this is a test
hello world
this is a test


#!/bin/ksh
set -x
ROWNUM=`grep -n "hello world" test.txt|cut -c 1-5`
sed '${ROWNUM}i
      * debug 
            DISPLAY 'new hello world'
      * debug 
' Test.txt >temp.txt

执行时报错,Function  cannot be parsed 。 应该是不能识别变量 $ROWNUM 的问题。 
还有一个问题,就是我在display里面有单引号,这似乎会和sed后面的单引号冲突 。
求大侠赐教 


|

#!/bin/ksh
sed '/hello world/i
    * debug 
    DISPLAY "new hello world"
    * debug 
' urfile

|
改用双引号。另外cut的这个地方可能需要修改。
#!/bin/ksh
set -x
ROWNUM=`grep -n "hello world" file |cut -d":" -f1`
sed "${ROWNUM}i
* debug 
DISPLAY 'new hello world'
* debug 
" file >temp.txt

或者直接用sed来定位呗?

#!/bin/ksh
set -x
sed "/hello world/i
    * debug 
    DISPLAY 'new hello world'
    * debug 
" file >temp.txt

|


我这里测试两种方法都没有问题,你用的什么操作系统?
[root@ tmp]# cat test1.sh 
#!/bin/ksh
ROWNUM=`grep -n "hello world" urfile |cut -d":" -f1`
sed "${ROWNUM}i
* debug 
DISPLAY 'new hello world'
* debug 
" urfile

[root@ tmp]# ./test1.sh 
cat test.txt
this is a test
* debug DISPLAY 'new hello world'* debug 
hello world
this is a test

[root@ tmp]# cat test2.sh 
#!/bin/ksh
sed "/hello world/i
    * debug 
    DISPLAY 'new hello world'
    * debug 
" urfile

[root@ tmp]# ./test2.sh 
cat test.txt
this is a test
* debug     DISPLAY 'new hello world'    * debug 
hello world
this is a test

|
我是测试过的呢,难道是你的系统或工具版本不一样么?我的是 Centos,其它环境我也没有,就看看有没有其他人可以帮上忙的吧。

    
 
 
 
本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。












  • 相关文章推荐
  • linux下利用(cat,strings,head,sed)命令生成随机字符串
  • pwd|sed 's//cygdrive/([a-z])/1:/' | sed 's///#/g'`\/(pwd代表绝对地址)这个sed又是什么
  • 在循环中使用sed,为什么sed不被执行
  • 请问 ls *.IMG | sed s/.IMG// > cube.lis 中的 | sed s/.IMG// 参数是什么意思?
  • sed变量的用法
  • 求住,sed命令
  • 关于sed脚本,高手快来解答
  • 求助:这个sed命令是什么意思?
  • sed linux 这句话什么 意思?
  • 关于sed的正则表达式
  • sed -i 修改文件内容
  • 【sed】简单匹配
  • (急)shell,sed 关于参数的传递
  • | sed 's/^/\ /' > 是啥意思啊
  • 在线等待,用sed命令如何替换整行?
  • 请教sed awk的用法详解,有命令说明的链接也不错,谢谢了
  • sed /awk 字段截取,Help!
  • 流编辑器 GNU sed
  • IP地址数字互转 iis7站长之家
  • 请问哪里可以下载到sed这个工具啊?
  • sed命令的替换的疑问


  • 站内导航:


    特别声明:169IT网站部分信息来自互联网,如果侵犯您的权利,请及时告知,本站将立即删除!

    ©2012-2021,