Created
December 25, 2013 03:48
-
-
Save douglasjarquin/8120023 to your computer and use it in GitHub Desktop.
Remove duplicate passwd file lines by uid
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env ruby | |
=begin | |
How would I write code to delete lines from a passwd file that has duplicate uids? | |
Example entry from the passwd file looks like: | |
`nobody:*:-2:-2:Unprivileged User:/var/empty:/usr/bin/false` | |
Bonus points if you can do it in a single pass through the file. | |
=end | |
require 'benchmark' | |
ruby_way = Benchmark.measure do | |
File.open('/etc/passwd').each_line do |line| | |
uid_hash = Hash.new(0) | |
uid = line.split(':') | |
uid_hash[uid[3]] = uid_hash[uid[3]] + 1 | |
puts line if uid_hash[uid[3]] != 1 | |
end | |
end | |
unix_way = Benchmark.measure do | |
`awk -F: 'uid[$3]++ {print $0}' /etc/passwd` | |
end | |
puts "Ruby solution: #{ruby_way.to_s}" | |
puts "Unix solution: #{unix_way.to_s}" |
juniorctl
commented
Dec 25, 2013
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment