Skip to content

Instantly share code, notes, and snippets.

@jroes
Last active December 25, 2015 16:58
Show Gist options
  • Save jroes/7009325 to your computer and use it in GitHub Desktop.
Save jroes/7009325 to your computer and use it in GitHub Desktop.
package main
import (
"io/ioutil"
"os"
"sort"
"strings"
)
func main() {
content, _ := ioutil.ReadFile(os.Args[1])
lines := strings.Split(string(content), "\n")
sort.Strings(lines)
ioutil.WriteFile(os.Args[2], []byte(strings.Join(lines, "\n")), 0600)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment