Skip to content

Instantly share code, notes, and snippets.

@fud
Created August 8, 2016 01:00
Show Gist options
  • Select an option

  • Save fud/0071f2d7c1779bd85dfcf77ffd8a167b to your computer and use it in GitHub Desktop.

Select an option

Save fud/0071f2d7c1779bd85dfcf77ffd8a167b to your computer and use it in GitHub Desktop.
replace spaces with sed
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