Skip to content

Instantly share code, notes, and snippets.

@offby1
Created June 14, 2015 00:54
Show Gist options
  • Select an option

  • Save offby1/79a6ddbdcbb34efe9e6b to your computer and use it in GitHub Desktop.

Select an option

Save offby1/79a6ddbdcbb34efe9e6b to your computer and use it in GitHub Desktop.
#!/usr/bin/env python
from __future__ import print_function
import os
dir = '/etc'
for relative_fn in os.listdir(dir):
abs = os.path.join(dir, relative_fn)
print(abs)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment