Re: Tractor-feed paper (was Re: Shell prompt)

2012-12-10 Thread David Guntner
On 12/10/2012 03:21 PM, Chris Bannister wrote: > On Mon, Dec 10, 2012 at 06:39:49AM -0800, David Guntner wrote: >> third, etc., copy. Of course either carbon or NCR paper needs to be run >> on a dot-matrix or other impact-type printer. High-speed laser printers >> used in that environment (which

Re: Tractor-feed paper (was Re: Shell prompt)

2012-12-10 Thread Chris Bannister
On Mon, Dec 10, 2012 at 06:39:49AM -0800, David Guntner wrote: > Lisi Reisz grabbed a keyboard and wrote: > > On Monday 10 December 2012 09:55:28 Chris Bannister wrote: > >> Is it double sheeted with a carbon paper arrangement so the second sheet > >> is a carbon copy of the original? > > > > I've

Tractor-feed paper (was Re: Shell prompt)

2012-12-10 Thread David Guntner
Lisi Reisz grabbed a keyboard and wrote: > On Monday 10 December 2012 09:55:28 Chris Bannister wrote: >> Is it double sheeted with a carbon paper arrangement so the second sheet >> is a carbon copy of the original? > > I've not come across that. I have only seen and used single "sheets". But >

Re: Shell prompt

2012-12-10 Thread Andrei POPESCU
On Lu, 10 dec 12, 07:30:30, Wolf Halton wrote: > If you are doing large-scale packing lists, invoices or inventory, friction > feed printers will wear out in days (I imagine) and you will have to hire > somebody to do nothing but mess around with loading paper, taking care of > jams and moving the

Re: Shell prompt

2012-12-10 Thread Wolf Halton
If you are doing large-scale packing lists, invoices or inventory, friction feed printers will wear out in days (I imagine) and you will have to hire somebody to do nothing but mess around with loading paper, taking care of jams and moving the paper off the printer. If that worker slips the pages

Re: Shell prompt

2012-12-10 Thread Andrei POPESCU
On Lu, 10 dec 12, 00:12:05, Bob Proulx wrote: > > P.S. What I find most surprising is that you can still buy green bar > tractor feed continuous computer paper. There must still be some of > those in use! Wow. Yep. Kind regards, Andrei -- Offtopic discussions among Debian users and developers

Re: Shell prompt

2012-12-10 Thread Lisi Reisz
On Monday 10 December 2012 09:55:28 Chris Bannister wrote: > Is it double sheeted with a carbon paper arrangement so the second sheet > is a carbon copy of the original? I've not come across that. I have only seen and used single "sheets". But there are many things in existence of which I have

Re: Shell prompt

2012-12-10 Thread Chris Bannister
1> > > > martin@merkaba:~#130> > > ^^^ > > > > I am wondering what is the significance of the "#1>" and the "#130>" in > > your shell prompt, is that a function of the shell you are using or is > > it a custom promp

Re: Shell prompt

2012-12-10 Thread Chris Bannister
^^^ > > > > I am wondering what is the significance of the "#1>" and the "#130>" in > > your shell prompt, is that a function of the shell you are using or is > > it a custom prompt? > > What? You have never used a paper terminal or te

Re: Shell prompt

2012-12-09 Thread Bob Proulx
Chris Bannister wrote: > Asking on list, as others may be interested also. > > Martin Steigerwald wrote: > > martin@merkaba:~#1> > > martin@merkaba:~#130> > ^^^ > > I am wondering what is the significance of the "#1>"

Shell prompt (was ... Re: multiarch - please do not force users to change a running system!)

2012-12-09 Thread Chris Bannister
ut -c1-72 | grep -v lib ^^^ I am wondering what is the significance of the "#1>" and the "#130>" in your shell prompt, is that a function of the shell you are using or is it a custom prompt? -- "If you're not careful, the newspapers will have you hati

Re: shell prompt for xwindows

2003-12-18 Thread Kevin Mark
On Mon, Dec 15, 2003 at 04:51:34AM -0800, Gruessle wrote: > > > What is the shell prompt for xwindows? > The windowing system in Linux is mult-layered. under everything is the libraries. There are libraries for X, for kde and gnome the next layer is X itself which uses X libraries X

Re: shell prompt for xwindows

2003-12-15 Thread Johann Spies
On Mon, Dec 15, 2003 at 04:51:34AM -0800, Gruessle wrote: > > > What is the shell prompt for xwindows? Run xterm, rxvt, wterm, eterm, kterm or other xshells. (See your KDE/Gnome or other menu in X11). Regards Johann -- Johann Spies Telefoon: 021-808 4036 Informasiet

Re: shell prompt for xwindows

2003-12-15 Thread Jonathan Wheelhouse
Gruessle <[EMAIL PROTECTED]>: > > > What is the shell prompt for xwindows? I'm not sure exactly what you mean. You could always start an xterm (or one of the other packages that provide x-terminal-emulator) from within X; that will give you shell. Jonathan -- To U

shell prompt for xwindows

2003-12-15 Thread Gruessle
What is the shell prompt for xwindows? Gruessle -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

shell prompt SOLVED

2003-01-03 Thread will trillich
On Sat, Jan 04, 2003 at 02:18:20AM +1100, Cameron Hutchison wrote: > Once upon a time will trillich said... > > - my prompt includes escape sequences to hilite user@host:path > > and gnome-terminal gets all confused on cursor positioning, > > particularly when using word-delete to edit the comm

Re: OT: shell prompt tip

2000-09-18 Thread kmself
On Wed, Sep 13, 2000 at 11:57:20PM +0200, Julio Merino ([EMAIL PROTECTED]) wrote: > Hi all, > > NOTE that this is OFFTOPIC. > > would you like to recognize fastly if you're a normal user or root? > Change the default debian PS1 to something like this for your user: > > PS1='\[\e[22m\e[40m\e

Re: OT: shell prompt tip

2000-09-17 Thread Julio Merino
Oh, another thing I've added to remember how many jobs I have in the background. This only apperes where there are jobs, but if not, it doesn't apperes. function jobcount { JOBS=`jobs | wc -l | awk {'print $1'}` [ $JOBS != 0 ] && echo -n "$JOBS:" } PS1='\[\e[22m\e[40m\e[32m\]\h:`jobcount`\

Re: OT: shell prompt tip

2000-09-16 Thread Sven Gaerner
If your shell is bash then zou can create aliases. Write in .bashrc something like alias cd='cd ../../..' This allows you to type cd on the command line to go 3 directories up. Sven At Sat, 16 Sep 2000 09:40:07 +0100 (BST), Simon Hales <[EMAIL PROTECTED]> wrote: > > On Thu, 14 Sep 2000,

Re: OT: shell prompt tip

2000-09-16 Thread Simon Hales
On Thu, 14 Sep 2000, J.P. Larocque wrote: >On an unrelated note, I'm *fairly* new to Linux (or UNIX in general), only >having been using it for about a year. In the DOS command-interpreter 4DOS, >I could refer to parent directories as . and .. as is the norm in DOS and UNIX. >But I could also typ

Re: OT: shell prompt tip

2000-09-15 Thread Oswald Buddenhagen
i know - i'm replying to my own post ... :) unquoted lines are changed > cd() { local p="$1" > while :; do local np="${p//.../../..}" > test "$p" == "$np" && break > p="$np" > done > builtin cd "$p" > } greetings -- Hi! I'm a .signature virus! Copy me into your ~/.sig

Re: OT: shell prompt tip

2000-09-15 Thread Oswald Buddenhagen
> On an unrelated note, I'm *fairly* new to Linux (or UNIX in general), only > having been using it for about a year. In the DOS command-interpreter 4DOS, > I could refer to parent directories as . and .. as is the norm in DOS and > UNIX. > But I could also type, say, "cd ", which would be eq

Re: OT: shell prompt tip

2000-09-14 Thread J.P. Larocque
On Wed, Sep 13, 2000 at 11:57:20PM +0200, Julio Merino wrote: > would you like to recognize fastly if you're a normal user or root? > Change the default debian PS1 to something like this for your user: > > PS1='\[\e[22m\e[40m\e[32m\]\h:\w\$\[\e[22m\e[40m\e[37m\] ' My /etc/profile has the long

OT: shell prompt tip

2000-09-14 Thread Julio Merino
Hi all, NOTE that this is OFFTOPIC. would you like to recognize fastly if you're a normal user or root? Change the default debian PS1 to something like this for your user: PS1='\[\e[22m\e[40m\e[32m\]\h:\w\$\[\e[22m\e[40m\e[37m\] ' and for the user root change the 32 to 31. Just easy ;-) B

Can't get to a shell prompt - kicks me out after login

1998-12-15 Thread Al McElrath
I have a hamm system here that I can log into, but it kicks me back to the login prompt after it displays the default Debian MOTD, and the "No mail" message. It does the same for every user, including root, even in single-user. I've wiped the drive and reinstalled Debian twice from a hamm CD and t

Re: bash shell prompt

1998-09-04 Thread E.L. Meijer \(Eric\)
[...] > .bashrc only gets read for subshells. .bash_profile always get read no > matter what. You can also source .bashrc from .bash_profile and you can > forget about order. -marlon Not true. The file ~/.bash_profile is sourced only in interactive _login_ shells. If you rea

Re: bash shell prompt

1998-09-03 Thread Marlon Urias
On Thu, 3 Sep 1998, M.C. Vernon wrote: > > > My guess was that the .bashrc in my home directory needed the > > same PS1 environment as the .bashrc in the root directory so I > > added > > > > export PS1='\h:\w\$ ' > > > > but this does not solve the problem UNLESS I login as myself and >

Re: bash shell prompt

1998-09-03 Thread David Warnock
To everyone who has replied to my question. Thanks I have my prompt as I want it, I also now understand some of the bash man information. I also just wanted to check that my new netscape 4.06 is working. Dave

Re: bash shell prompt

1998-09-03 Thread Nathan E Norman
On Thu, 3 Sep 1998, Julian Gilbey wrote: : > Hi, : > : > On Hamm, if I login as root or while logged in as myself do a "su" : > then my shell prompt shows the host and current directory. : > : > When I am logged in as myself my prompt is just a $ : >

Re: bash shell prompt

1998-09-03 Thread Julian Gilbey
> Hi, > > On Hamm, if I login as root or while logged in as myself do a "su" > then my shell prompt shows the host and current directory. > > When I am logged in as myself my prompt is just a $ > > I much prefer to see the current directory in my prompt. So ho

Re: bash shell prompt

1998-09-03 Thread M.C. Vernon
> My guess was that the .bashrc in my home directory needed the > same PS1 environment as the .bashrc in the root directory so I > added > > export PS1='\h:\w\$ ' > > but this does not solve the problem UNLESS I login as myself and > then type > > bash > > at which point the prompt change

bash shell prompt

1998-09-03 Thread David Warnock
Hi, On Hamm, if I login as root or while logged in as myself do a "su" then my shell prompt shows the host and current directory. When I am logged in as myself my prompt is just a $ I much prefer to see the current directory in my prompt. So how do I change it? My guess was that t