Skip to content

Instantly share code, notes, and snippets.

@marcesher
Created March 29, 2014 22:21
Show Gist options
  • Save marcesher/9863995 to your computer and use it in GitHub Desktop.
Save marcesher/9863995 to your computer and use it in GitHub Desktop.
goimports_if_go.sh
#!/bin/sh
if [[ $1 == *.go ]]
then
goimports -w $1
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment