BlogHide Resteemsdviejo (25)in crypto • 7 years agoPakistan hasn't banned cryptocurrenciesThey just have advised to public institutions not to use it.dviejo (25)in linux • 7 years agoHow to replace a text in file using linuxIf 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…