csababarta / ntdsxtract

Active Directory forensic framework
http://www.ntdsxtract.com
GNU General Public License v3.0
315 stars 108 forks source link

Missing shebang from scripts #2

Closed tautology0 closed 9 years ago

tautology0 commented 9 years ago

The major scripts (e.g. dsusers.py) are all missing the #!/usr/bin/python shebang (or /usr/bin/env python); meaning that you have to explicitly call them through python, which is all rather quaint.

(strictly you oughtn't really use .py - but that's just the pedant in me.)

jeffmcjunkin commented 9 years ago

Agreed as to the issue. I'd added shebangs to my local copies before, but it'd be nice to have this added upstream.

I put the minor change into a pull request - #3

csababarta commented 9 years ago

Pull request merged. Thx for the help.