From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 21504 invoked by alias); 22 Feb 2006 20:59:52 -0000 Received: (qmail 21496 invoked by uid 22791); 22 Feb 2006 20:59:51 -0000 X-Spam-Check-By: sourceware.org Received: from sibelius.xs4all.nl (HELO sibelius.xs4all.nl) (82.92.89.47) by sourceware.org (qpsmtpd/0.31) with ESMTP; Wed, 22 Feb 2006 20:59:50 +0000 Received: from elgar.sibelius.xs4all.nl (root@elgar.sibelius.xs4all.nl [192.168.0.2]) by sibelius.xs4all.nl (8.13.4/8.13.4) with ESMTP id k1MKxB8b020418; Wed, 22 Feb 2006 21:59:11 +0100 (CET) Received: from elgar.sibelius.xs4all.nl (kettenis@localhost.sibelius.xs4all.nl [127.0.0.1]) by elgar.sibelius.xs4all.nl (8.13.4/8.13.3) with ESMTP id k1MKxBR2020737; Wed, 22 Feb 2006 21:59:11 +0100 (CET) Received: (from kettenis@localhost) by elgar.sibelius.xs4all.nl (8.13.4/8.13.4/Submit) id k1MKxAGI030568; Wed, 22 Feb 2006 21:59:10 +0100 (CET) Date: Thu, 23 Feb 2006 04:25:00 -0000 Message-Id: <200602222059.k1MKxAGI030568@elgar.sibelius.xs4all.nl> From: Mark Kettenis To: pkoning@equallogic.com CC: drow@false.org, gdb@sourceware.org In-reply-to: <17404.49729.275843.669493@gargle.gargle.HOWL> (message from Paul Koning on Wed, 22 Feb 2006 14:57:53 -0500) Subject: Re: Quoting, backslashes, CLI and MI References: <20060221213324.GA30729@nevyn.them.org> <17403.35144.223466.56709@gargle.gargle.HOWL> <20060222195114.GA31315@nevyn.them.org> <17404.49729.275843.669493@gargle.gargle.HOWL> Mailing-List: contact gdb-help@sourceware.org; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-owner@sourceware.org X-SW-Source: 2006-02/txt/msg00311.txt.bz2 > Date: Wed, 22 Feb 2006 14:57:53 -0500 > From: Paul Koning > > (Hm... should there be a flavor of "set args" that does shell-style > expansion of the args list? That sure would be handy for cases where > I want to debug a program that's being handed a wildcard, or some > similar expanded argument, and I end up having to expand it manually > when inside GDB...) But we already have that flavor of "set args"; it's what "set args" ;-). When we start an inferior process, we do so by starting a shell, which will expand the argument list for you. Mark