From: John Snow Date: Mon, 7 Jun 2021 20:06:49 +0000 (-0400) Subject: scripts/qmp-shell: add redirection shim X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=d08caefe6648fc0713af5361e2b88bee53b67ebb;p=qemu.git scripts/qmp-shell: add redirection shim qmp-shell has a new home, add a redirect for a little while as the dust settles. Signed-off-by: John Snow Message-id: 20210607200649.1840382-43-jsnow@redhat.com Signed-off-by: John Snow --- diff --git a/scripts/qmp/qmp-shell b/scripts/qmp/qmp-shell new file mode 100755 index 0000000000..4a20f97db7 --- /dev/null +++ b/scripts/qmp/qmp-shell @@ -0,0 +1,11 @@ +#!/usr/bin/env python3 + +import os +import sys + +sys.path.append(os.path.join(os.path.dirname(__file__), '..', '..', 'python')) +from qemu.qmp import qmp_shell + + +if __name__ == '__main__': + qmp_shell.main()