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)
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)
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)
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)
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)
Hi,
The logic is very simple but I can't seem to make this work in Korn shell.
I need to check two files to make sure there is no errors. Each of the file will have number. For example, first file btt.txt will have 112 which is good. Second file bgg.txt will have 6 which is also good. If I... (4 Replies)
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)
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)
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)
hi whats wrong in below??
CHECK=M10;
if ;
then
echo "hello hi";
else
echo "how are u hello hi";
fi
I am getting error as
./test.sh: line 2: '
./test.sh: line 2: M10: command not found
./test.sh: line 2: M10: command not found
./test.sh: line 2: M10: command not found (8 Replies)
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)
Hi all ,
i want to get the most repeated column in my file
File:
name,ID
adam,12345 ----1
adam,12345 ----2
adam,934
adam,12345 ----3
john,14
john,13
john,25 ----1
john,25 ----2
tom,1 -----1
tom,2 -----1
so my output to be (5 Replies)
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)