Changes between Version 15 and Version 16 of wade/linux/bash


Ignore:
Timestamp:
Dec 29, 2009, 12:09:09 AM (15 years ago)
Author:
wade
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • wade/linux/bash

    v15 v16  
    5555
    5656= sed =
     57s function 類似 vim 的取代指令。
    5758{{{
    5859sed 's/要被取代的字串/新的字串/g'
    5960}}}
     61p function 可以印出資料,常與 -n 使用,才能只秀出處理過後的結果。
     62{{{
     63sed -n '9p' photoid
     64}}}
     65將檔案中第 9 行字串傳給 $a 。
     66{{{
     67a=$(sed -n '9p' photoid )
     68}}}
     69
    6070
    6171