Skip to content

Instantly share code, notes, and snippets.

@payneio
Last active November 2, 2015 19:42
Show Gist options
  • Save payneio/9491e82d46cc36518d0e to your computer and use it in GitHub Desktop.
Save payneio/9491e82d46cc36518d0e to your computer and use it in GitHub Desktop.
Expand Go tabs to spaces
#!/bin/bash
find . -name '*.go' ! -type d -exec bash -c 'expand -t 4 "$0" > /tmp/e && mv /tmp/e "$0"' {} \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment