Printing from unix with lp


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers Printing from unix with lp
# 1  
Old 10-23-2001
Printing from unix with lp

Hey,

When printing from UNIX all the dataafter the end of the page is not printed!!

How can I use lp so that instead of just printing to the end of the page, it stops at the end of the page and then prints on the next line???

Thanx
# 2  
Old 10-23-2001
Have a look at the manul pages.It might help.

<pre>
man lp
</pre>

You don't relly make clear what your exact problem is, maybe you need to set your printer up.???
# 3  
Old 10-23-2001
Sorry, I'll try to explain more.

If you have a file like this
Code:
    if ($current_state eq "new_file")
      {
        @array=split(/ /,$line);
        $filename=@array[2];
        $filename=substr($filename,5,length($filename));
      }

but the width of your pare is like this

<-------------------------------------->

the output wil be..
Code:
    if ($current_state eq "new_fi
      {
        @array=split(/ /,$line);
        $filename=@array[2];
        $filename=substr($filenam
      }

How do you get an output like...
Code:
    if ($current_state eq "new_fi
le")
      {
        @array=split(/ /,$line);
        $filename=@array[2];
        $filename=substr($filenam
e,5,length($filename));
      }

Also, I did have a look at the man pages and found nothing about this.

Hope this is clear now.

added code tags for readability --oombera

Last edited by oombera; 02-18-2004 at 04:13 PM..
# 4  
Old 10-23-2001
try man fold

If that utility is installed on your system, I think it'll be exactly what you want. You can cat the file out, pipe it throught fold (I think the syntax woiuld be like fold -80, for 80 lines. The man page is more accurate than I am, though), then send it to lp.
# 5  
Old 10-23-2001
Thanks alot!

fold -78 filename | lp

works pefectly
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

Printing a document in UNIX

Hi, I would like to know the command to print a document with portait option. Note : I used the below command, however I am not getting any output and it is blocking the printer queue. lp -d Dubprint -o portrait Adhoc_stmt Also, how can I see the default printer settings and how to... (1 Reply)
Discussion started by: mr_manii
1 Replies

2. Shell Programming and Scripting

Need help with printing in UNIX

I have a file that looks like below: a:b:c d e f g h u:f:j e:k:c0 d9 e1 x55 h789 p:d:hh dtyu gasd lrtyu oqa Is there a way to print is as given below: a:b:c d e f g h u:f:j e:k:c0 d9 e1 x55 (5 Replies)
Discussion started by: sags007_99
5 Replies

3. UNIX for Dummies Questions & Answers

Sco Unix printing : jobs hangs in queue - printing via lp versus hpnpf

Hi, We have a Unix 3.2v5.0.5. I installed a printer via scoadmin, HP network printer manager with network peripheral name (hostname and ipadres are in /etc/hosts). This is the configuration file : Code: root@sco1 # cat configurationBanner: on:AlwaysContent types: simpleDevice:... (0 Replies)
Discussion started by: haezeban
0 Replies

4. SCO

Unix Printing

Hi, The code is generating a file of 180 lines, I can check that with vi, but when I am executing the following command for duplex printing , it is printing 4 pages which include 2 blank pages 2 & 4 (page no). $ lp -d printer -0 'land,double,lpi=8,length=90' filename It is expected to print... (1 Reply)
Discussion started by: dsd
1 Replies

5. UNIX for Advanced & Expert Users

Unix Printing

Hi, I need to print PDF from Unix command line on couple of printers like Lexmark T644PS, HP LJ4100DTN connected to Windows Print Server. I need options of mentioning the printer name and choosing tray number for printing. I was successfull in FTPing PDF files to printer but i could not find... (2 Replies)
Discussion started by: snvijaysankar
2 Replies

6. HP-UX

Printing from unix to windows.

Hi, This issue is killing me. I'm looking to get advise on setting up a remote printer in unix "HP-UX" which will print to a printer which sits remotely connected to a windows 2000 server. I guess I'm looking for an idiots guide - any assistance you may offer will be gratefully received. ... (2 Replies)
Discussion started by: pmaths
2 Replies

7. UNIX for Advanced & Expert Users

UNIX Printing

Greetings. Got a problem I'm working on, not that familiar with UNIX to be honest. We're having some issues printing from a UNIX Server, hoping someone can help. Here's the situation: We have remote offices that use Microsoft Windows Remote Desktop Client to connect to a Windows 2003 Terminal... (5 Replies)
Discussion started by: MPW
5 Replies

8. UNIX for Dummies Questions & Answers

Printing under UNIX

Hi All As UNIX newbie, (I know Open VMS very well) I have the following question: If I use the lpr command for printing, I normally specify the printer name an the file I want to print. So far so good. Once this is done I can than check with the lpstat command the status of my printjob, but... (2 Replies)
Discussion started by: duc
2 Replies

9. UNIX for Advanced & Expert Users

SCO Unix 5.0 printing

Iv'e been having a problem with printing that driving me CRAZY! I am trying to print a large file about 200-300 pgs, but the print job reaches a certain point then stops, the job does'nt finish. Anyone have any suggestions? (2 Replies)
Discussion started by: dpadron
2 Replies

10. UNIX for Advanced & Expert Users

Printing Problems in unix ... ( Bar-cdoe - Ip Printing)

Hi guys ... i need ur help with some printing problem in unix ... first prob. : i wanna print from my NCR unix to an Win NT , Ip based printing server ( HP JetDirect ) . My issue , is it possible to print directly to an Ip address from unix ? How do i make it work to get any results ?... (3 Replies)
Discussion started by: QuickSilver
3 Replies
Login or Register to Ask a Question