Last active
October 2, 2023 15:14
-
-
Save kaz3w/f5ef12aa262649c320951d393eb9953d to your computer and use it in GitHub Desktop.
Replace string with sed
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/bash | |
for file in `find . -maxdepth 1 -type f`; do /usr/bin/sed -i s/\"SymbolName\":\".*\",\"T/\"T/g $file | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment