mime.convs(5) Apple Inc. mime.convs(5)NAME
mime.convs - mime type conversion file for cups
DESCRIPTION
The mime.convs file defines the filters that are available for converting files from one format to another. The standard filters support
text, PDF, PostScript, HP-GL/2, and many types of image files.
Additional filters can be added to the mime.convs file or (preferably) to other files in the CUPS configuration directory.
Each line in the mime.convs file is a comment, blank, or filter line. Comment lines start with the # character. Filter lines specify the
source and destination MIME types along with a relative cost associated with the filter and the filter to run:
super/type super/type cost filter
application/postscript application/vnd.cups-raster 50 pstoraster
SEE ALSO classes.conf(5), cupsd(8), cupsd.conf(5), mime.types(5), printers.conf(5),
http://localhost:631/help
COPYRIGHT
Copyright 2007-2011 by Apple Inc.
20 March 2006 CUPS mime.convs(5)
Check Out this Related Man Page
cupsd(8) Apple Inc. cupsd(8)NAME
cupsd - cups scheduler
SYNOPSIS
cupsd [ -c cupsd.conf ] [ -f ] [ -F ] [ -h ] [ -l ] [ -s cups-files.conf ] [ -t ]
DESCRIPTION
cupsd is the scheduler for CUPS. It implements a printing system based upon the Internet Printing Protocol, version 2.1, and supports most
of the requirements for IPP Everywhere. If no options are specified on the command-line then the default configuration file
/etc/cups/cupsd.conf will be used.
OPTIONS -c cupsd.conf
Uses the named cupsd.conf configuration file.
-f Run cupsd in the foreground; the default is to run in the background as a "daemon".
-F Run cupsd in the foreground but detach the process from the controlling terminal and current directory. This is useful for running
cupsd from init(8).
-h Shows the program usage.
-l This option is passed to cupsd when it is run from launchd(8) or systemd(8).
-s cups-files.conf
Uses the named cups-files.conf configuration file.
-t Test the configuration file for syntax errors.
FILES
/etc/cups/classes.conf
/etc/cups/cups-files.conf
/etc/cups/cupsd.conf
/usr/share/cups/mime/mime.convs
/usr/share/cups/mime/mime.types
/etc/cups/printers.conf
/etc/cups/subscriptions.conf
CONFORMING TO
cupsd implements all of the required IPP/2.1 attributes and operations. It also implements several CUPS-specific administrative operations.
EXAMPLES
Run cupsd in the background with the default configuration file:
cupsd
Test a configuration file called test.conf:
cupsd -t -c test.conf
Run cupsd in the foreground with a test configuration file called test.conf:
cupsd -f -c test.conf
SEE ALSO backend(7), classes.conf(5), cups(1), cups-files.conf(5), cups-lpd(8), cupsd.conf(5), cupsd-helper(8), cupsd-logs(8), filter(7),
launchd(8), mime.convs(5), mime.types(5), printers.conf(5), systemd(8), CUPS Online Help (http://localhost:631/help)
COPYRIGHT
Copyright (C) 2007-2017 by Apple Inc.
12 February 2016 CUPS cupsd(8)
I have 2 files with many lines.
File one example:
CN=VXX,CN=ug88888,OU=America,OU=State,OU=VXX,
File two example:
ul22222 Jon Smith
ug8888 Mildred Apple
I need a routine that will take the ug88888 portion of the first file and pull out the corresponding full line in file two. Then add the... (2 Replies)
Alright, so I am trying to use perl (or any other shell scripting language, awk/sed/bash for instance), to retrieve the mime-type of a file.
I want to keep it in one file, and most of the modules that are on cpan that check for mime types (Magic), aren't installed on these boxes.
Anyone have... (2 Replies)
Hi:
I have writed a script that read a HTML file and convert this in a multipart mime fail to send in a mail.
But the result isn't interpreted lika a mime file!!
Somebody can see the error???
---------------------------
#! /bin/bash
SB=$1
IF=$2
OF=$3
rm -f $OF.b64
... (7 Replies)
Hi,
In my file I have following to lines
-------------------------------------------
C:/India/Apple/Mumbai/Red_Apple/Apple.txt
cd C:/India/Apple && run
-------------------------------------------
I want to replace "C:/India/Apple" with "D:/Test/Red_Apple" whereever the pattern... (6 Replies)
Hello.
I need to send mails from hp-ux with 2 attachments: a text file and an excel file. So I'm composing a mime file which I will pipe to sendmail utility.
This works fine if the only attachment is the text file (i use cat command to attach text content). But I have problems with the format... (3 Replies)
Hello,
I am an super newbie, so forgive my sheer ignorance. I have a series of text files formatted as follows (just showing the header and first few lines):
mean_geo mean_raw lat lon
0.000 0 -70.616 163.021
0.000 0 -70.620 163.073
0.000 ... (8 Replies)
Hi All,
I need to increase the DASD capacity for my zLinux Mainframe server to accomodate high volume in the application.
But the cost seems to be huge.
Can anyone tell alternate approch to avoid the cost of aditional DASD, if any?
Is there any other alternate to DASD for zLinux Mainframe... (1 Reply)
Hello. This shouldn't be an unusual problem, but I cannot find anything about it at google or at other search machine.
So, I've made an application using C++ and QtCreator. I 've made a new mime type for application's project files.
My system (ubuntu 10.10), when I right click a file and I... (3 Replies)
Hi I have a file containing the below lines
1010001001639
1010001001789
1020001001927
1030001001928
1040001002033
1200001002609
1200001003481
1200001004935
I need to filter lines that starts with 101.
It would be of great help if its in awk. (6 Replies)
Hi
I need to find the list of files in a directory and to do some specific operations based on the type of files.
suppose in a directory am having .dat , .log, .err, .rej file types. i need to filter out .dat and .log only which are older than six months.
i used the below query but the... (2 Replies)