Skip to content

Instantly share code, notes, and snippets.

/.rb

Created September 1, 2016 17:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/0881579aa5bfb2a70489c1ad276e247c to your computer and use it in GitHub Desktop.
Save anonymous/0881579aa5bfb2a70489c1ad276e247c to your computer and use it in GitHub Desktop.
begin
f = File.new("/etc/auto.master", "r")
while (line = f.gets)
if line.start_with?("/home")
break
true
else
nil
end
end
rescue
nil
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment