qmp (358B)
1 #!/usr/bin/env python3 2 3 import sys 4 5 print('''This unmaintained and undocumented script was removed in preference 6 for qmp-shell. The assumption is that most users are using either 7 qmp-shell, socat, or pasting/piping JSON into stdio. The duplication of 8 facilities here is unwanted, and the divergence of syntax harmful.''', 9 file=sys.stderr) 10 11 sys.exit(1)