Skip to content

Instantly share code, notes, and snippets.

@0xh3x
Created December 10, 2010 10:30
Show Gist options
  • Save 0xh3x/736069 to your computer and use it in GitHub Desktop.
Save 0xh3x/736069 to your computer and use it in GitHub Desktop.
import os, shutil, sys
plsql_native_library_dir = 'plsqltest'
copy_to_dir = 'mydir'
while True:
for fl in os.listdir(plsql_native_library_dir):
if fl[-2:] == '.c':
shutil.copy(plsql_native_library_dir+fl, copy_to_dir+fl)
sys.exit()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment