I would really like to see the .dcrc option back.

as a workaround you can use the command:

$ dc -f .dcrc -

or

$ dc -e commands -

As you don't always want the - option it is hard to alias these
commands so I declare a funtion instead. In .bashrc I have the following:

dc () 
{ 
    if [ -n "$1" ]; then
        /usr/bin/dc -f .dcrc $*;
    else
        /usr/bin/dc -f .dcrc -;
    fi
}

I think it does what I expect.



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org

Reply via email to