I am working with the Oracle 10.2.0.3 job scheduler on Solaris 10, and unfortunately, the scheduler executes scripts in such a way that several default shell environment variables are not defined. For example, $HOME, $USER, and $LOGNAME are missing.
How can I parse the appropriate record in... (7 Replies)
I am writing a script to keep check on free disk space, and I would like to find a way to parse $LINE (see code below) into a numeric value (for free disk space percentage) and a string value (for mount point). If possible, I would like to avoid sed or any additional use of awk since I am not very... (7 Replies)
I'm working in korn shell and have a variable which contains a string like:
aa_yyyymmdd_bbb_ccc_ddd.abc. I want to treat the _ and . as delimiters and parse the string so I end up with 6 values in variables that I can manipulate. My original plan was to use
var1=`echo $sting1 | cut -c1-c2` but... (9 Replies)
Hi,
I have a config file that has blank, commented lines. I need to escape commented lines, blank lines, parse the remaining lines and store them in variables or array.
the config file contains the following lines.
# config file
# Define Oracle User
ORA_USER=abcde
ORA_PASS=xyzabc... (8 Replies)
Hello
I need to pass some environment parameters to a datastage job and am getting an error when trying to send the complete concatinated variable. I have decided to parse out just the values and send as parameters but am struggling to find the best way to do this (actually I am not very... (3 Replies)
For example, I have a file with below lines containing VOB tags and VOB paths.
* /vobs/fts/FTSUSM20_VOB /ccvobsslx01/projects/vobs/eml/FTSUSM20_VOB
* /vobs/fts/FTS20_VOB /ccvobsslx01/projects/vobs/eml/FTS20_VOB
* /vobs/pmv/PMS_VOB /ccvobsslx01/projects/vobs/cpm/_/PMS_VOB
*... (4 Replies)
hi,
i have the followiing scenario where by i am parsing teh following output using cut -d
like so
#!/bin/bash
output="ABCTable|
------------------|
|
------------------|
code |
name |
amount |"
col1= $output | cut -d'|' -f5
col2= $output | cut -d'|'... (1 Reply)
Hi there, would appreciate some help on this parsing problem if anybody can help
im trying to parse a variable with the following output, each of the values im trying to parse are deliminated by a ;
T192... (8 Replies)
Trying to do so
echo "111:222:333" |awk -F: '{system("export TESTO=" $2)}'But it doesn't work (2 Replies)
Discussion started by: urello
2 Replies
LEARN ABOUT DEBIAN
composeglyphs
composeglyphs(1) Debian composeglyphs(1)NAME
composeglyphs - generate an encoding vector or new font for postscript
SYNOPSIS
composeglyphs -e encoding.afm -E encoding.ps
composeglyphs -i input.afm -o output.ps -c composite.afm -n newname -e base_encoding.afm -t target_encoding.afm -a output.afm
DESCRIPTION
composeglyphs is a script to generate either an encoding vector or a new font for postscript. It requires a pre-existing AFM and allows
for the use of composite characters that that AFM does not already provide.
OPTIONS -e encoding.afm
The base encoding AFM to use.
-E encoding.ps
The encoding vector to output.
-i input.afm
The AFM of the original font.
-o output.ps
The font program to generate.
-c composite.afm
The AFM containing supplementary composite character information.
-n newname
The name of the new font.
-t target_encoding.afm
The target encoding.
-a output.afm
The name of the AFM file to generate.
NOTES
composeglyphs is a part of Ogonkify, which comes with the a2ps distribution.
If you create new AFMs or modify existing ones, the author asks that you kindly send him a copy so that he may include them in the distri-
bution.
AUTHOR
Juliusz Chroboczek <jec@dcs.ed.ac.uk>
SEE ALSO a2ps(1), ogonkify(1)
The full documentation for Ogonkify is maintained as a Texinfo manual. If the info and a2ps programs are properly installed at your site,
the command
info Ogonkify
should give you access to the complete manual.
a2ps May 2003 composeglyphs(1)