Subject: Re: Few questions...
To: None <port-amiga@NetBSD.ORG>
From: Michael Boehnisch <billy@psycho.uni-paderborn.de>
List: port-amiga
Date: 07/22/1998 12:05:24
Hi!

Juha Sievi-Korte <davy@sci.fi> wrote:
[..]
>1. How will i make prompt to dislay current directory in csh? 

Add the following commands to ~/.cshrc:

    alias prompt 'set noglob;set prompt=`dirs`;\
                 set prompt="${USER}@`hostname`:${prompt[1]}>";\
                 unset noglob'
    alias popd   'popd \!*;prompt'
    alias pushd  'pushd \!*;prompt'
    alias cd     'set old=$cwd; chdir \!*;prompt'
    alias back   'set back=$old;set old=$cwd;\
                 cd $back; unset back; dirs'

    prompt

On my sytem I get a prompt like this:

   billy@musashi:~/c/ATA2/src>

>2. Is the screen command available as binary package for netbsd/amiga? And
>is there any kind of virtual consoles in netbsd, like in Linux?

Screen is available, as far as I remember. You should find it on any NetBSD
mirror site in netbsd/packages/1.3.1/amiga/All/screen-X.X.X.tgz, where X.X.X
is some version number. There are no virtual consoles.

Yours,

   Michael Boehnisch