From mboxrd@z Thu Jan 1 00:00:00 1970 From: Bharata B Rao Subject: Re: [Qemu-devel] KVM call agenda for September 25th Date: Tue, 25 Sep 2012 21:03:59 +0530 Message-ID: <20120925153359.GB23071@in.ibm.com> References: <87txunr76j.fsf@trasno.org> <5060488A.1050008@redhat.com> <87obkucl9q.fsf@codemonkey.ws> <5061C4E3.4080005@redhat.com> Reply-To: bharata@linux.vnet.ibm.com Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: Anthony Liguori , Paolo Bonzini , quintela@redhat.com, "Richard W.M. Jones" , qemu-devel , "kvm@vger.kernel.org" To: Kevin Wolf Return-path: Received: from e28smtp07.in.ibm.com ([122.248.162.7]:43931 "EHLO e28smtp07.in.ibm.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754754Ab2IYPcD (ORCPT ); Tue, 25 Sep 2012 11:32:03 -0400 Received: from /spool/local by e28smtp07.in.ibm.com with IBM ESMTP SMTP Gateway: Authorized Use Only! Violators will be prosecuted for from ; Tue, 25 Sep 2012 21:02:00 +0530 Received: from d28av01.in.ibm.com (d28av01.in.ibm.com [9.184.220.63]) by d28relay05.in.ibm.com (8.13.8/8.13.8/NCO v10.0) with ESMTP id q8PFVv2F4194738 for ; Tue, 25 Sep 2012 21:01:57 +0530 Received: from d28av01.in.ibm.com (loopback [127.0.0.1]) by d28av01.in.ibm.com (8.14.4/8.13.1/NCO v10.0 AVout) with ESMTP id q8PL1Yfl032013 for ; Wed, 26 Sep 2012 02:31:34 +0530 Content-Disposition: inline In-Reply-To: <5061C4E3.4080005@redhat.com> Sender: kvm-owner@vger.kernel.org List-ID: On Tue, Sep 25, 2012 at 04:51:15PM +0200, Kevin Wolf wrote: > Am 25.09.2012 14:57, schrieb Anthony Liguori: > > qemu -device \ > > isa-serial,index=0,chr=tcp://localhost:1025/?server=on&wait=off > > Your examples kind of prove this: They aren't much shorter than what > exists today, but they contain ? and &, which are nasty characters on > the command line. Right. '&' can't even be specified directly on command line since that will result in qemu command being treated as a background job with anything after '&' being discarded. I realized that '&' needs to be escaped as %26. Regards, Bharata.