summaryrefslogtreecommitdiffstats
path: root/test cases/common/26 find program/print-version-with-prefix.py
blob: 520e0ba8c3e256d9782dd7491b6d7ca4ca5b4a6e (plain)
1
2
3
4
5
6
7
8
#!/usr/bin/env python3

import sys

if len(sys.argv) != 2 or sys.argv[1] != '--version':
    exit(1)

print('Version: 1.0')