Sort by

recency

|

52 Discussions

|

  • + 0 comments

    sed 's/ the / this /'

  • + 0 comments

    This works as well . awk '{sub(/ the /," this ");print}'

  • + 0 comments

    any one pls explain me in clear manner & even I didn't get any normal basic commands also linux or pls suggest me some youtube videos to learn from the scratch pls help me guys

  • + 0 comments
    sed s/" the "/" this "/
    
  • + 0 comments

    while IFS= read -r line; do echo -e "$line" | sed "s/\bthe\b/this/ "; done