Skip to content

Instantly share code, notes, and snippets.

@jaburns
Last active November 16, 2015 22:34
Show Gist options
  • Save jaburns/7cbfdeaa0d68cdd1779b to your computer and use it in GitHub Desktop.
Save jaburns/7cbfdeaa0d68cdd1779b to your computer and use it in GitHub Desktop.
Pass in a string, exits 0 if all characters are unique.
#!/usr/bin/env bash
echo "$1" | fold -w 1 | sort | tee /tmp/struniq | uniq | cmp -s - /tmp/struniq
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment