If you want to replace a text in file you have to use sed:
sed -i.bak s/STRING_TO_BE_REPLACED/NEW_STRING/g ./file.txt
If you want to add a text in specific line:
sed -e '2439iLINE_TO_ADD' -i ./file.txt
If you want to replace a text in file you have to use sed:
sed -i.bak s/STRING_TO_BE_REPLACED/NEW_STRING/g ./file.txt
If you want to add a text in specific line:
sed -e '2439iLINE_TO_ADD' -i ./file.txt
Congratulations @dviejo! You have completed some achievement on Steemit and have been rewarded with new badge(s) :
Click on any badge to view your own Board of Honor on SteemitBoard.
For more information about SteemitBoard, click here
If you no longer want to receive notifications, reply to this comment with the word
STOP
Do not miss the last announcement from @steemitboard!
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit