summaryrefslogtreecommitdiffstats
path: root/test/AS/fixture/myas.py
blob: 3d05c796973ba37700742b44dd58e50c54d8e598 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
import sys

if sys.platform == 'win32':
    args = sys.argv[1:]
    inf = None
    while args:
        a = args[0]
        if a == '-o':
            out = args[1]
            args = args[2:]
            continue
        args = args[1:]
        if not a[0] in "/-":
            if not inf:
                inf = a
            continue
        if a[:3] == '/Fo': out = a[3:]
    with open(inf, 'rb') as ifp, open(out, 'wb') as ofp:
        for l in ifp.readlines():
            if l[:3] != b'#as':
                ofp.write(l)
    sys.exit(0)

else:
    import getopt
    try:
        opts, args = getopt.getopt(sys.argv[1:], 'co:')
    except getopt.GetoptError:
        # we may be called with --version, just quit if so
        sys.exit(0)
    for opt, arg in opts:
        if opt == '-o': out = arg
    if args:
        with open(args[0], 'rb') as ifp, open(out, 'wb') as ofp:
            for l in ifp.readlines():
                if l[:3] != b'#as':
                    ofp.write(l)
    sys.exit(0)