Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

wnpp-check(1) [hpux man page]

WNPP-CHECK(1)						      General Commands Manual						     WNPP-CHECK(1)

NAME
wnpp-check - check if a package is being packaged or if this has been requested SYNOPSIS
wnpp-check package ... wnpp-check --help|--version DESCRIPTION
wnpp-check downloads the lists of packages which are listed as being packaged (ITPed) or for which a package has been requested (RFPed) from the WNPP website and lists any packages supplied on the command line which appear in those lists. Note that WNPP, and therefore wnpp-check's output, is source package based. OPTIONS
--help, -h Show a summary of options. --version, -v Show version and copyright information. SEE ALSO
http://www.debian.org/devel/wnpp EXIT STATUS
0 None of the packages supplied has an open ITP or RFP 1 Either an error occurred or at least one package supplied has an open ITP or RFP AUTHOR
wnpp-check was written by David Paleino <d.paleino@gmail.com>; this man page was written by Adam D. Barratt <adam@adam-barratt.org.uk> for the devscripts package. wnpp-check was originally based on wnpp-alert, which was written by Arthur Korn <arthur@korn.ch> and modified by Julian Gilbey <jdg@debian.org> for the devscripts package. Both scripts are in the public domain. DEBIAN
Debian Utilities WNPP-CHECK(1)

Check Out this Related Man Page

WNPP-CHECK(1)						      General Commands Manual						     WNPP-CHECK(1)

NAME
wnpp-check - check if a package is being packaged or if this has been requested SYNOPSIS
wnpp-check package ... wnpp-check --help|--version DESCRIPTION
wnpp-check downloads the lists of packages which are listed as being packaged (ITPed) or for which a package has been requested (RFPed) from the WNPP website and lists any packages supplied on the command line which appear in those lists. Note that WNPP, and therefore wnpp-check's output, is source package based. OPTIONS
--help, -h Show a summary of options. --version, -v Show version and copyright information. SEE ALSO
http://www.debian.org/devel/wnpp EXIT STATUS
0 None of the packages supplied has an open ITP or RFP 1 Either an error occurred or at least one package supplied has an open ITP or RFP AUTHOR
wnpp-check was written by David Paleino <d.paleino@gmail.com>; this man page was written by Adam D. Barratt <adam@adam-barratt.org.uk> for the devscripts package. wnpp-check was originally based on wnpp-alert, which was written by Arthur Korn <arthur@korn.ch> and modified by Julian Gilbey <jdg@debian.org> for the devscripts package. Both scripts are in the public domain. DEBIAN
Debian Utilities WNPP-CHECK(1)
Man Page

15 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

check for a palindrome

how do i check whether an input string is a palindrome or not ? (1 Reply)
Discussion started by: doubtful
1 Replies

2. Filesystems, Disks and Memory

website

HELLO FELLOW GEEKS. PLZ CHECK OUT MY FRIENDS SITE AT http://isunshine.dhs.org or u can also join the message board at http://isunshine.dhs.org/scripts/ikonboard.cgi wixifer (1 Reply)
Discussion started by: wixifer
1 Replies

3. Shell Programming and Scripting

alphanumeric comparision

I have a requirement where I need to check if where r1v07l09ab is a software release. I should always check for this to be true to continue the release deployment because an older release should not be deployed by mistake. I mean only the release greater than the current release should be... (3 Replies)
Discussion started by: rakeshou
3 Replies

4. AIX

How to check if a package is already installed?

Hi All, I want to check if the perl DBI package is already installed my AIX unix machine. is there any command to check this? Please help. Thanks, Am (2 Replies)
Discussion started by: am_yadav
2 Replies

5. Shell Programming and Scripting

How to check file is being copied

I wanna check whether a file is being copied ,i.e the file size is increasing. Thanks for your help (2 Replies)
Discussion started by: anhkeen
2 Replies

6. Shell Programming and Scripting

Read last line of file to check for value

Folks How best to read the last line of a file, to check for a particular value? This is the last line of my file...... 00000870000002000008 0000000020000 ......I need to check that this line contains '70' in positions 7 and 8, before I continue processing. Regards ... Dave (12 Replies)
Discussion started by: daveaasmith
12 Replies

7. Windows & DOS: Issues & Discussions

Calling a .bat file using Korn script

Hi all, I am a very new user for korn scripting and in a process of learning. i have a .bat file that calls a .vbs file which calls a macro used to convert an excel spread sheet to .csv file... Now i want to automate this process. I want to call this bat file using a korn script or a korn... (6 Replies)
Discussion started by: bhagya2340
6 Replies

8. Programming

Hi Folks please see the code and respond the questions!

Hi All. I have a package discreibed down. CREATE OR REPLACE PACKAGE BODY IRISCOS_REFRESH_pkg AS PROCEDURE IRISCOS IS CURSOR cur_pci(c_myear number) IS Select cstc.cid, cstc.elid, p.first_name,p.last_name,p.email_id ,pl.plan_name, ptc.chair_id from person p, person_to_chair ptc,... (7 Replies)
Discussion started by: Haque123
7 Replies

9. Shell Programming and Scripting

WHILE LOOP CONDITION CHECK

Hello I want to compare values of two variables as CHECK condition in a while loop. eg: var1=0 var2=10 while do echo " $var1 " var1=`expr $var1 + 1` done However this is giving error.How to do it in a proper manner? Thanks. (3 Replies)
Discussion started by: dashing201
3 Replies

10. Shell Programming and Scripting

how do i check the REDHAT details?

I am using lunix machine. I want to check if this is RED HAT 4 or higher version. How do i check this? The below output does not tell about REDHAT version. $ uname -a Linux chfdallindb11 2.6.18-128.7.1.el5 #1 SMP Wed Aug 19 04:00:49 EDT 2009 x86_64 x86_64 x86_64 GNU/Linux $ Any help... (2 Replies)
Discussion started by: govindts
2 Replies

11. Shell Programming and Scripting

check in and check out comments

Hi Do you know how can I get all check in and check out comments for a period of time with Surround SCM CLI ---------- Post updated at 02:00 AM ---------- Previous update was at 01:56 AM ---------- Do you have NAnt tasks that allow us to access Evolution from an NAnt build script? (0 Replies)
Discussion started by: saku
0 Replies

12. Shell Programming and Scripting

sed print from last occurrence match until the end of file

Hi, i have file f1.txt with data like: CHECK a b CHECK c d CHECK e f JOB_START .... I want to match the last occurrence of 'CHECK' until the end of the file. I can use awk: awk '/^CHECK/ { buf = "" } { buf = buf "\n" $0 } END { print buf }' f1.txt | tail +2Is there a cleaner way of... (2 Replies)
Discussion started by: ysrini
2 Replies

13. Shell Programming and Scripting

[SOLVED] Capturing output in a korn variable

Hi, I'm new to korn and having trouble capturing the text output from one program in an array that I can then feed into another program. Direct approaches didn't work, so I've tried to break it down thus: The program lonlat2pixline gives the values I need in the second column, so I print that... (4 Replies)
Discussion started by: daurin
4 Replies

14. Shell Programming and Scripting

To check if a file is open and in use (logs are being written to it)

Hello Experts, I need to write a shell script to check if a file is open and something is being written to it. I want to know how OS handles it. I checked with lsof command but it is not working. For a test I did this. while true; do echo `date` >>abc.txt; done then I checked lsof |... (5 Replies)
Discussion started by: shekhar_4_u
5 Replies

15. UNIX for Advanced & Expert Users

Redhat check when package was updated

Is there a way to check when a package was updated on your redhat system? (2 Replies)
Discussion started by: cokedude
2 Replies