We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
'Sed' command #1
'Sed' command #1
Sort by
recency
|
52 Discussions
|
Please Login in order to post a comment
sed 's/ the / this /'
This works as well . awk '{sub(/ the /," this ");print}'
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
while IFS= read -r line; do echo -e "$line" | sed "s/\bthe\b/this/ "; done