Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

pmksetup(8) [debian man page]

PMKSETUP(8)						    BSD System Manager's Manual 					       PMKSETUP(8)

NAME
pmksetup -- premake setup SYNOPSIS
pmksetup [-hVv] [-r variable] [-u variable=value] DESCRIPTION
The pmksetup utility is meant to create or update the pmk.conf(5) file in order to run the pmk(1) configuration tool. pmksetup reads all configuration information from the pmk.conf(5) file. The options are as follows: -h Display the help menu. -r variable Remove the given variable from pmk.conf(5) if its value isn't static. Data gathering is skipped by this option. -u variable=value Add or update existing variable from pmk.conf(5) if its value isn't static. The value must have its double quotes escaped to pass through shell filter. Data gathering is skipped by this option. -V Verbose, display debugging messages. -v Display the version number. FILES
/etc/pmk/pmk.conf default pmk(1) configuration file SEE ALSO
make(1), pmk(1), pmkscan(1), pmk.conf(5), pmkfile(5) AUTHORS
Damien Couderc and Xavier Santolaria. BSD
April 03, 2003 BSD
Man Page

6 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Double Quotes within a variable

This is a totally dumb newbie question, but I have not been able to find t he answer in the BASH book or online. I am trying pass a double quoted variable to the command line. variable = "-b \"dc=example,dc=com\"" When I run sh -x the variable comes out as '-b "dc=example,dc=com"' is... (4 Replies)
Discussion started by: burton_1080
4 Replies

2. HP-UX

HP-UX configuration gathering tool

Hello! I would like to introduce a tool for gathering information on the HP- UX operating system. I would like to hear experts opinions about this utility, its prospects and usefulness. Any feedbacks, suggestions, bug reports, feature requests etc are welcome. The tool project web page:... (0 Replies)
Discussion started by: ahaidukov
0 Replies

3. Shell Programming and Scripting

update a string variable and use in....

Hello Forun, i have a variable searchpath="/home/shailesh/project/debug" i want to make it like searchpath="/home/shailesh/project/debug/*.mk" and want to use this like for finding all *.mk files in debug folder. for f in "$searchpath" `find -type f`; do sed... (6 Replies)
Discussion started by: shailesh_arya
6 Replies

4. Shell Programming and Scripting

Edit variable in a file

Hello, I have a script which reads variable values from /system/pt.conf I sourced it already. But the probelm is I don't know how to edit only the value from the variable "res" in the conf file. pt.conf: res=1280x720 log=1 And I want to edit the value "1280x720" from "res". I was... (5 Replies)
Discussion started by: FD1999
5 Replies

5. Shell Programming and Scripting

Safe way to eval variable declarations?

Is there a safe way to evaluate variable declarations within a script whether they come from a .conf file, user input, or stdin? Example .conf file: server=ftp.xxxx.com port=21 user="$USER" # Hopefully allow this type of substitution domain="$DOMAIN" server="$(malicious... (4 Replies)
Discussion started by: Michael Stora
4 Replies

6. Shell Programming and Scripting

Spaces in double quotes in variable ?

Hi got this issue and was wondering if someone could please help out ? var='." "' echo $var ." " I 'll get ." " and not ." with 10 spaces in between " Thanks (3 Replies)
Discussion started by: stinkefisch
3 Replies