Sponsored Content
Full Discussion: print to file
Top Forums UNIX for Dummies Questions & Answers print to file Post 302703161 by jgt on Wednesday 19th of September 2012 11:30:25 AM
Old 09-19-2012
The simplest solution is to create a "dumb" printer that saves the print file to a directory on the SCO system. This can be made flexible enough to allow different directories for different users/applications etc.
Implement either Samba, or Visionfs, depending upon which release of SCO that you have, and share the folder that contains the print files. The print files will then be available on a shared drive to the Windows software.
Depending upon how the cobol print files are created, there can be issues creating a PDF file from them.
If you have the source code for your cobol programs, I can provide support for those.
To create the printer:
Save the following script as /usr/spool/lp/model/file with owner bin, group lp perms 0550
Code:
:                                                          
#       @(#) file 25.2 95/03/27                            
#                                                          
#                                                          
# lp interface for print to file                           
#                                                          
                                                           
#Set up some global variables.                             
: ${SPOOLDIR:=/usr/spool/lp}                               
: ${LOCALPATH:=${SPOOLDIR}/bin}                            
                                                           
shift; shift; shift; shift; shift                          
files="$*"                                                 
for file in $files                                         
do                                                         
        cp ${file} /u/spool/`/bin/basename $file`                              
done                                                       
exit 0   
  ------end of script------                                                 
-bash-3.2# l file                                          
-r-xr-x---    1 bin      lp         267 Sep 19 11:25 file

Add a local printer
Select "file" as the model name
Select "/dev/null" as the device.
Create the directory /u/spool, or modify to suit.
Code:
cd /u
mkdir spool
chown root spool
chgrp group spool
chmod 0777 spool
chmod +t spool

This will give everyone read/write access to the directory, but only root will be able to remove the directory.
These 2 Users Gave Thanks to jgt For This Post:
 

9 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

search for the contents in many file and print that file using shell script

hello have a file1 H87I Y788O T347U J23U and file2 J23U U887Y I99U T556U file3 I99O J99T F557J file4 N99I T666U R55Y file5 H87I T347U file6 H77U R556Y E44T file7 Y788O K98U H8I May be using script we can use file1 to search for all the files and have the output H87I file5... (3 Replies)
Discussion started by: cdfd123
3 Replies

2. Shell Programming and Scripting

Need shell script to read two file at same time and print out in single file

Need shell script to read two file at same time and print output in single file Example I have two files 1) file1.txt 2) file2.txt File1.txt contains Aaa Bbb Ccc Ddd Eee Fff File2.txt contains Zzz Yyy Xxx (10 Replies)
Discussion started by: sreedhargouda
10 Replies

3. UNIX for Dummies Questions & Answers

find locked files, print file path, unlock file

using OS X and the Terminal, I'd like to find all locked files in a specified directory, unlock them, and print a list of those files that were unlocked how can I do this? I'm familiar with chflags nouchg for unlocking one file but not familiar with unix enough to do what I'd like. Thanks! (0 Replies)
Discussion started by: alternapop
0 Replies

4. Shell Programming and Scripting

Howto Print File Path or Print the Filename

I'm trying to clean up my samba share and need to print the found file or print the path of the image it tried to searched for. So far I have this but can't seem to get the logic right. Can anyone help point me in the right direction? for FILE in `cat list`; do if ; then ... (1 Reply)
Discussion started by: overkill
1 Replies

5. Shell Programming and Scripting

Strings from one file which exactly match to the 1st column of other file and then print lines.

Hi, I have two files. 1st file has 1 column (huge file containing ~19200000 lines) and 2nd file has 2 columns (small file containing ~6000 lines). ################################# huge_file.txt a a ab b ################################## small_file.txt a 1.5 b 2.5 ab ... (4 Replies)
Discussion started by: AshwaniSharma09
4 Replies

6. Shell Programming and Scripting

How to print excel file / csv file in solaris server ?

Hi, I have to print a excel file in solaris server. I am using lexmark printer with post script printer driver . But the problem is when i am using " lp -d <printer name> <somefile name.xls>" command it is not printing correctly. but for pdf file using the same command it printing correctly. ... (2 Replies)
Discussion started by: Sambuddha
2 Replies

7. UNIX for Dummies Questions & Answers

Reading XML file and print the values in the text file using Linux shell script

hi guys, i want help... Reding XML file and print the values into the text file using linux shell script file as per below xml file <sequence> <Filename>aldorzum.doc</Filename> <DivisionCode>US</DivisionCode> <ContentType>Template</ContentType> <ProductCode>VIMZIM</ProductCode> </sequence>... (1 Reply)
Discussion started by: sravanreddy
1 Replies

8. UNIX for Dummies Questions & Answers

Reading Xml file and print the values into the text file in columnwise?

hi guys, i want help... Reding XML file and print the values into the text file using linux shell script file as per below xml file <sequence> <Filename>aldorzum.doc</Filename> <DivisionCode>US</DivisionCode> <ContentType>Template</ContentType> <ProductCode>VIMZIM</ProductCode> </sequence>... (4 Replies)
Discussion started by: sravanreddy
4 Replies

9. Shell Programming and Scripting

Use while loop to read file and use ${file} for both filename input into awk and as string to print

I have files named with different prefixes. From each I want to extract the first line containing a specific string, and then print that line along with the prefix. I've tried to do this with a while loop, but instead of printing the prefix I print the first line of the file twice. Files:... (3 Replies)
Discussion started by: pathunkathunk
3 Replies
lpshut(1M)						  System Administration Commands						lpshut(1M)

NAME
lpshut - stop the LP print service SYNOPSIS
lpshut DESCRIPTION
The lpshut command stops the LP print service. Printers that are printing when lpshut is invoked stop printing. Start or restart printers using lpsched(1M). EXIT STATUS
The following exit values are returned: 0 Successful completion. non-zero An error occurred. FILES
/var/spool/lp/* LP print queue. ATTRIBUTES
See attributes(5) for descriptions of the following attributes: +-----------------------------+-----------------------------+ | ATTRIBUTE TYPE | ATTRIBUTE VALUE | |Availability |SUNWpsu | +-----------------------------+-----------------------------+ SEE ALSO
lp(1), lpstat(1), lpadmin(1M), lpmove(1M), lpsched(1M), attributes( 5) System Administration Guide: Basic Administration SunOS 5.10 8 Jan 1998 lpshut(1M)
All times are GMT -4. The time now is 05:25 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy