Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

soundconverter(1) [debian man page]

SOUNDCONVERTER(1)						GNOME User's Manual						 SOUNDCONVERTER(1)

NAME
soundconverter - convert sound files to other formats SYNOPSIS
soundconverter [options] [file...] DESCRIPTION
soundconverter is a simple tool for converting sound files to other formats. It can work from the command line, but is really meant for interactive use in the GNOME environment. OPTIONS
-h, --help Print out a usage summary. -b, --batch Convert in batch mode, from command line, without a graphical user interface. You can use this from, say, shell scripts. -m, --mime-type arg Set the output MIME type for batch mode. The default is audio/x-vorbis. Note that you probably want to set the output suffix as well. -q, --quiet Be quiet. Don't write normal output, only errors. -d, --debug Print additional debug information. -s, --suffix arg Set the output filename suffix for batch mode. The default is .ogg. Note that the suffix does not affect the output MIME type. -t, --tags Show tags for input files instead of converting them. This indicates command line batch mode and disables the graphical user inter- face. -j, --jobs= Force number of concurent conversions. Default is one per present CPU. AUTHOR
Lars Wirzenius (liw@iki.fi). Gautier Portet (kassoulet@gmail.com) Uwe Bugla (uwe.bugla@gmx.de). GNOME
2009-06-10 SOUNDCONVERTER(1)

Check Out this Related Man Page

glabels(1)						      General Commands Manual							glabels(1)

NAME
glabels - Label and business card creation program for GNOME SYNOPSIS
glabels-3 [OPTIONS] [label-filename...] glabels-3-batch [OPTIONS] [label-filename...] DESCRIPTION
glabels-3 is a lightweight program for creating labels and business cards for the GNOME desktop environment. It is designed to work with various laser/ink-jet peel-off label and business card sheets that you'll find at most office supply stores. glabels-3 is pre-configured with templates for many of these products. It also provides an interactive template designer for creating new templates according to user specifications. For full documentation see the gLabels online help. glabels-3-batch is a command line utility to print labels previously prepared with glabels-3. OPTIONS
-?, --help Display a summary of available command-line options. --usage Display a short usage summary. -v, --version Print program version information. Options specific to glabels-batch -o filename, --output=filename Set output filename to filename. (default="output.ps") -i filename, --input=filename Set name of file with data to be merged to filename. Typically this is a .csv file containing values to be printed on the labels. -s n, --sheets=n Set number of sheets to n. (default=1) -c n, --copies=n Set number of copies to n. (default=1) -f n, --first=n Set label on first sheet to start printing from to n. (default=1) -l, --outline Print outlines around labels. This is useful for testing printer alignment or printing proof sheets. -C, --cropmarks Print crop marks. Helpful for cutting up sheets. -r, --reverse Print mirror image of labels. This is useful for clear labels intended to be seen from the back through glass. FILES
The $HOME/.glabels directory contains all user-defined templates. SEE ALSO
The gLabels homepage at <http://glabels.org/>. AUTHOR
Jim Evins <evins@snaught.com> Jun 28, 2004 glabels(1)
Man Page

15 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

how to batch & print hpgl files to xerox device

have electronic files from customer with .gl extension; are hpgl files originating from Unix. Need utility to open, batch and print in directory order on xerox docutech. Any ideas? Help greatly appreciated. (5 Replies)
Discussion started by: theresa
5 Replies

2. UNIX for Dummies Questions & Answers

Append value(batch number) to start of records

Hi all, I am new to unix shell scripting and I am trying to append batch number that comes in Trailer record to the detailed record. TR|20080312|22881 |000000005|20080319|2202 LN|20080312|077777722220 |0000100000017|ABS LN|20080312|000799439326 |0000709943937|AA TR|20080313|22897 ... (6 Replies)
Discussion started by: kiran_418
6 Replies

3. Shell Programming and Scripting

Log file

Hi All, I am new to Linux OS. I am trying to run a batch programs, so i using Shell script to run the batch files. And the binaries which i am running dumps log data to command prompt.I am trying to store this in log file ">log.txt". I have posted below my shell script code ... (6 Replies)
Discussion started by: fido.genial
6 Replies

4. Shell Programming and Scripting

Merge all commands into one

how can i merge follwoing process to one... tail +5 rawdata_AAA_1.txt_$$ | grep -v "^$" >> rawdata_AAA_2.txt_$$ For discarding first 5 rows and deleting null rows awk '!/^ /{if(a) print a; a=$0}/^ /{print a}' rawdata_AAA_2.txt >> rawdata_AAA_3.txt For merging record if it split into 2 rows... (8 Replies)
Discussion started by: Amit.Sagpariya
8 Replies

5. Shell Programming and Scripting

How to store a number along with the sign

If I use the below cut -c37-48, the minus sign does not get appended to the number, as the sign is in the 36th Position. But, If I use cut -c36-48, the minus sign appears infront of the number, but for positive numbers, it throws an error. How can this be resolved.. (7 Replies)
Discussion started by: Haimanti
7 Replies

6. Shell Programming and Scripting

increment counter as suffix starting with the rightmost digit

Hi, I would like to add a suffix to a file name but maintain the suffix length to 5 digits. For eg, output > 1st_file.00001, 2nd_file.00002...10th_file.00010....100th_file.00100 Can anyone please advise me on how to go about it? Platform: SunOS mps201a 5.9 Generic_118558-39 sun4u... (7 Replies)
Discussion started by: danish0909
7 Replies

7. Shell Programming and Scripting

FTP in batch mode

HI, Need to ftp a bunch of files in a directory in batch mode. TRying to ftp a single file first with below code. #!/bin/ksh function ftp_files { ftp -n ${D2_SRVR} <<-EOF quote user ${D2_UID} quote pass ${D2_PWD} cd ${D2_DIR}/${D2_NAME} lcd ${D1_DIR}/${D1_NAME}/dml/ put file1 ... (6 Replies)
Discussion started by: cvsanthosh
6 Replies

8. Shell Programming and Scripting

Deleting particular files with a numerical suffix

Hello I have a directory with a list of files which have a particular numerical suffix. E.g filename_0 filename_1 filename_18500 filename_10000 I want to delete all files from this directory which have a filename which have a numerical suffix greater than 10540. So any files... (5 Replies)
Discussion started by: kamal_p_99
5 Replies

9. Shell Programming and Scripting

Replacing tags

Hi , I have a file ...it's like a xml file. File 1: <tag1> Value11</tag1><tag2>value12</tag2> <tag1>Value21</tag1> ...... Continues Now what I want as output is Value11|value12 Value21|| ......Continues This is just learning purpose. I tried reading each line, then parsing... (14 Replies)
Discussion started by: Anupam_Halder
14 Replies

10. Shell Programming and Scripting

Ordering batch number

Hi, Could some one please help to order the batch number in sequence. I will be getting bunch of files with batch number in folder1 which are not in sequence. I need to move all files from folder1 to folder2 with batch number in sequence. Header record looks like PROCESS1... (8 Replies)
Discussion started by: zooby
8 Replies

11. UNIX for Dummies Questions & Answers

FTP batch file suddenly stopped working

Hello, we have a UNIX system the runs our business data. We have 4 users that use a particular batch command file to extract data for use in the Windows side of the fence: (despreg.bat) ftp ftp> open danapak (database name) connected to danapak ftp> user ccsb password ccsb ftp>... (29 Replies)
Discussion started by: Mick_Dundee
29 Replies

12. Shell Programming and Scripting

Customizing ps command

Hi, I want to monitor our batch jobs at a specific interval for later analysis to see the performance and CPU utilization USER PID %CPU %MEM VSZ RSS TTY STAT START TIME COMMAND ps aux|grep dsadm|head xxxxx 386 0.0 0.0 103524 15448 pts/0 S Mar27 0:00... (6 Replies)
Discussion started by: ratheeshjulk
6 Replies

13. Shell Programming and Scripting

Format text file to html

Hi Experts, Anybody out there figure out on how to achieve in shell scripts or tools. I have done googling to find solutions but no luck. I have thousands of .txt files to batch process, please see the below sample text content after -------- start here --------. What I want to achieve is to... (10 Replies)
Discussion started by: lxdorney
10 Replies

14. Shell Programming and Scripting

Script for batch renaming

What is wrong with this script to rename batch of similar files? For example renaming all *.txt files to *.tab . $ for i in seq {01..10}; do touch ${i}.txt; done $ ./rename.sh *.txt txt tab Error: mv: ‘01.txt’ and ‘01.txt’ are the same file. Code is: #!/usr/bin/bash # renames.sh #... (6 Replies)
Discussion started by: yifangt
6 Replies

15. Shell Programming and Scripting

Start process on X number of files and then wait for the next batch

Thanks for RudiC for his extraordinary help on organizing files in a batch of 10 using below code. FL=($(ls)); for ((i=0;i<=${#FL};i++)); do for j in ${FL:$i:10}; do $batch ${j} ${j}.txt done; echo "Pausing for next iteration"; echo... (6 Replies)
Discussion started by: busyboy
6 Replies