mirror of
https://github.com/fail0verflow/hbc.git
synced 2024-11-16 14:59:14 +01:00
17 lines
233 B
Python
Executable File
17 lines
233 B
Python
Executable File
#!/usr/bin/env python2
|
|
|
|
import sys, os, os.path
|
|
import pywii as wii
|
|
|
|
args = sys.argv[1:]
|
|
|
|
if args[0] == "-dpki":
|
|
wii.loadkeys_dpki()
|
|
args.pop(0)
|
|
else:
|
|
wii.loadkeys()
|
|
|
|
wadfile = args.pop(0)
|
|
wad = wii.WiiWad(wadfile)
|
|
wad.showinfo()
|