Shell: Difference between revisions

From ETM
Jump to navigation Jump to search
(Created page with " Replace inside files:<syntaxhighlight lang="shell"> sed -i -- 's/","texture/"},"texture/g' *.json sed -i -- 's/"profileName":"fs_/"profileName":"h_/g' *.json </syntaxhighl...")
 
No edit summary
 
Line 6: Line 6:


sed -i -- 's/"profileName":"fs_/"profileName":"h_/g' *.json
sed -i -- 's/"profileName":"fs_/"profileName":"h_/g' *.json
sed -i -- 's/{"id":{"id":"/{"id":{"id":"h_/g' *.json
</syntaxhighlight>
</syntaxhighlight>

Latest revision as of 13:33, 1 April 2020


Replace inside files:

sed -i -- 's/","texture/"},"texture/g' *.json

sed -i -- 's/"profileName":"fs_/"profileName":"h_/g' *.json

sed -i -- 's/{"id":{"id":"/{"id":{"id":"h_/g' *.json