Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

ps_fill(3) [debian man page]

PS_FILL(3)						     Library Functions Manual							PS_FILL(3)

NAME
PS_fill -- Fills the current path SYNOPSIS
#include <pslib.h> void PS_fill(PSDoc *psdoc) DESCRIPTION
Fills the path constructed with previously called drawing functions like PS_lineto(3). SEE ALSO
PS_stroke(3), PS_fill_stroke(3) AUTHOR
This manual page was written by Uwe Steinmann uwe@steinmann.cx. PS_FILL(3)

Check Out this Related Man Page

PS_ADD_BOOKMARK(3)					     Library Functions Manual						PS_ADD_BOOKMARK(3)

NAME
PS_add_bookmark -- Add bookmark to current page SYNOPSIS
#include <pslib.h> int PS_add_bookmark(PSDoc *psdoc, const char *text, int parent, int open) DESCRIPTION
Adds a bookmark for the current page. Bookmarks usually appear in PDF-Viewers left of the page in a hierachical tree. Clicking on a book- mark will jump to the given page. The parameter parent is another bookmark which is used as the parent of the new bookmark. If open is unequal to zero the bookmark will be shown open by the pdf viewer. The bookmark has no meaning if the document is printed or viewed but it will be used if the document is converted to pdf by either Acrobat Distillertm or Ghostview. The returned value is a reference for the bookmark. It is only used if the bookmark shall be used as a parent. RETURN VALUE
Returns the identifier of the bookmark or zero in case of an error. The identifier is a positiv number. SEE ALSO
PS_add_launchlink(3), PS_add_pdflink(3), PS_add_weblink(3) AUTHOR
This manual page was written by Uwe Steinmann uwe@steinmann.cx. PS_ADD_BOOKMARK(3)
Man Page

8 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

need a unix script to let me know by email or pager when the filesystem is 80% full.

Does anyone have a script to check disk space usage. My backup directory keeps filling up with archivelog files and I need a script to let me know by email or pager when the filesystem is 80% full. Thank you! (1 Reply)
Discussion started by: jzjy0r
1 Replies

2. Shell Programming and Scripting

how to remove files with a date

I have files with a date name ( 20060506 20060507 etc..) that i want to remove because it keeps filling up the directory. Can someone please help me with a script to remove those date files. i would like to keep atleast 14 days worth from the current date. I hope i have explained it clearly and... (5 Replies)
Discussion started by: justintime
5 Replies

3. Solaris

No space left on device

Hi all, A very strange problem I have this morning with my Solaris 8. I have a FS full, I deleted some files but the system doesn't seems to reallocate the free space (I'm using Veritas): df -k : /dev/vx/dsk/dlds02vg/dlds02oralv 4194304 4194304 0 100% /dlds02/lds/oracle ... (4 Replies)
Discussion started by: unclefab
4 Replies

4. SCO

SCO console login auto fills *

OS: SCO Openr Server 6.0 MP4 HW: Dell R710 Server When I try to login to the console, the login prompt keeps filling with * even when I presss enter after the password prompt the login starts filling automatically with the multiple asterisks. This is happening on the console only and if I... (0 Replies)
Discussion started by: atish0
0 Replies

5. Shell Programming and Scripting

/tmp filling up

Does anyone know of a way to redirect the ksh default of processing data in /tmp to another file system or / something else? My ksh script is parsing large DB files and it keeps filling up /tmp on the root disk. I have a 1 Tb disk with most of its space. How do I re-direct the /tmp ksh... (6 Replies)
Discussion started by: cchelten
6 Replies

6. Shell Programming and Scripting

Dealing with white spaces in bash scripts

I'm trying to search for all files in directory with particular GID then change the GID to match the UID of each file: #!/bin/sh for i in $(find /dump -gid 200 | sed 's/\ /\\\ /g' | sed 's/\&/\\\&/g'); do chgrp $(ls -ln ${i} | awk '{print $3}') ${i} done I'm using sed to deal with... (7 Replies)
Discussion started by: venmx
7 Replies

7. Shell Programming and Scripting

Help required to get a backup script working

Hi all I have a unix based firewall, which creates a daily backup file on the device. I need a script to scp this file over to a remote server. I can get this working daily using a basic script and a cron job. However, I only want it to send the latest config back up file and currently... (4 Replies)
Discussion started by: jimmyzoom
4 Replies

8. Shell Programming and Scripting

Convert creates multiple files

I want to crop an image and am using convert convert mountain.png -crop 3000x4500 +repage -format png mountain--cr.png The problem is that convert is creating 4 files mountain--cr-0.png mountain--cr-1.png mountain--cr-2.png mountain--cr-3.png The first is what I need, the other... (10 Replies)
Discussion started by: Kangol
10 Replies