Skip to content

Instantly share code, notes, and snippets.

@vadims
Created October 23, 2009 06:59
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 vadims/216703 to your computer and use it in GitHub Desktop.
Save vadims/216703 to your computer and use it in GitHub Desktop.
#!/usr/bin/env ruby
f = File.open("bar", File::RDWR|File::CREAT, 0600)
f.sync=true
f.read
f.write "Hello"
puts "Should be 5: #{f.pos}"
f.close
`rm bar`
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment