Created
August 8, 2016 01:00
-
-
Save fud/0071f2d7c1779bd85dfcf77ffd8a167b to your computer and use it in GitHub Desktop.
replace spaces with sed
This file contains hidden or 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
| billsb@Brentons-MacBook-Pro ~ $ more brent.js | |
| function test(): | |
| this; | |
| is; | |
| a test; | |
| billsb@Brentons-MacBook-Pro ~ $ sed 's/[[:space:]]\{4,\}/ /g' brent.js | |
| function test(): | |
| this; | |
| is; | |
| a test; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment