mirror of
https://frontier.innolan.net/github/amigaos-cross-toolchain6.git
synced 2024-10-19 10:29:55 +00:00
16 lines
220 B
Python
Executable File
16 lines
220 B
Python
Executable File
#!/usr/bin/env python2.7 -B
|
|
|
|
import logging
|
|
import sys
|
|
|
|
from objtools import aout
|
|
|
|
|
|
if __name__ == '__main__':
|
|
logging.basicConfig()
|
|
|
|
for path in sys.argv[1:]:
|
|
obj = aout.Aout()
|
|
obj.read(path)
|
|
obj.dump()
|