summaryrefslogtreecommitdiff
path: root/scripts/uid-map
diff options
context:
space:
mode:
authorLuke Shumaker <lukeshu@sbcglobal.net>2016-06-15 16:53:59 -0400
committerLuke Shumaker <lukeshu@sbcglobal.net>2016-06-15 16:53:59 -0400
commitc10faa5b2b617d5d62407567cd8d495d7ddddeb6 (patch)
tree6181f3a1e71403cc1e54c32ca244c819040c9562 /scripts/uid-map
parent1a435c0f4b41904025d0f263734cb9aea6a03b13 (diff)
git mv bin scripts
Diffstat (limited to 'scripts/uid-map')
-rwxr-xr-xscripts/uid-map8
1 files changed, 8 insertions, 0 deletions
diff --git a/scripts/uid-map b/scripts/uid-map
new file mode 100755
index 0000000..10c3fac
--- /dev/null
+++ b/scripts/uid-map
@@ -0,0 +1,8 @@
+#!/usr/bin/env ruby
+# Usage: uid-map
+
+load "#{File.dirname(__FILE__)}/common.rb"
+
+load_all_users.each do |uid,user|
+ puts "#{uid}:#{user["username"]}"
+end