bug-bash
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Migrating from tcsh to bash (issues)


From: Freddy Vulto
Subject: Re: Migrating from tcsh to bash (issues)
Date: Tue, 3 Feb 2009 12:27:36 -0800 (PST)
User-agent: G2/1.0

3.  Put this in your ~/.inputrc

        # Produce list of all possible completions at single tab
    set show-all-if-ambiguous on

4.  ?

5.  You can set a 'trap':

    $ trap "echo Exit $?;" ERR
    $ wc /tmp/qqwoieuqo
    wc: /tmp/qqwoieuqo: No such file or directory
    Exit 1
    $ trap - ERR  # Reset trap

Freddy Vulto
http://fvue.nl


reply via email to

[Prev in Thread] Current Thread [Next in Thread]