Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

net::dri::data::contact::opensrs(3pm) [debian man page]

Net::DRI::Data::Contact::OpenSRS(3pm)			User Contributed Perl Documentation		     Net::DRI::Data::Contact::OpenSRS(3pm)

NAME
Net::DRI::Data::Contact::OpenSRS - Handle OpenSRS contact data for Net::DRI DESCRIPTION
This subclass of Net::DRI::Data::Contact adds accessors and validation for OpenSRS specific data. METHODS
The following accessors/mutators can be called in chain, as they all return the object itself. firstname() Please note that for OpenSRS data, the name() must be only the lastname, hence this extra firstname() method lastname() Alias for name() SUPPORT
For now, support questions should be sent to: <netdri@dotandco.com> Please also see the SUPPORT file in the distribution. SEE ALSO
http://www.dotandco.com/services/software/Net-DRI/ AUTHOR
Richard Siddall, <netdri@elirion.net<gt> COPYRIGHT
Copyright (c) 2009 Richard Siddall <netdri@elirion.net>. All rights reserved. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. See the LICENSE file that comes with this distribution for more details. perl v5.10.1 2010-03-25 Net::DRI::Data::Contact::OpenSRS(3pm)

Check Out this Related Man Page

Net::DRI::Data::Contact::US(3pm)			User Contributed Perl Documentation			  Net::DRI::Data::Contact::US(3pm)

NAME
Net::DRI::Data::Contact::US - Handle .US contact data for Net::DRI DESCRIPTION
This subclass of Net::DRI::Data::Contact adds accessors and validation for .US specific data. METHODS
The following accessors/mutators can be called in chain, as they all return the object itself. They are needed only for registrant contacts. application_purpose() intended usage for the domain name nexus_category() the nexus cateogry SUPPORT
For now, support questions should be sent to: <netdri@dotandco.com> Please also see the SUPPORT file in the distribution. SEE ALSO
http://www.dotandco.com/services/software/Net-DRI/ AUTHOR
Patrick Mevzek, <netdri@dotandco.com> COPYRIGHT
Copyright (c) 2006,2007,2008 Patrick Mevzek <netdri@dotandco.com>. All rights reserved. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. See the LICENSE file that comes with this distribution for more details. perl v5.10.1 2010-03-25 Net::DRI::Data::Contact::US(3pm)
Man Page

14 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Reading Characters from txt file

Hello, I am new to shell scripting, and I am trying to create a script that reads an input like the following firstname:lastname:age firstname:lastname:age firstname:lastname:age in a text file. I have a 2 part question. First how do I open the file in a shell script. And then how can... (7 Replies)
Discussion started by: TexasGuy
7 Replies

2. Shell Programming and Scripting

Find directories not containing foo, and copy foo to them

Hello all, I have a situation where I have a web root directory with a few thousand users spread out into 100 subdirectories in a 00/firstname.lastname, 01/firstname.lastname, etc. hierarchy. I suddenly need to make sure that each of these user directories contains a default index.html file... (6 Replies)
Discussion started by: dkaplowitz
6 Replies

3. Shell Programming and Scripting

Delimeter used in data

Blasted data inputters :mad: they always have to screw my data up....My comma delimited file with three fields ( firstname,surname and address ) has been screwed up by people entering addresses like this (putting a comma in between the house number and the street name) 142,Stonewall Avenue ... (8 Replies)
Discussion started by: hcclnoodles
8 Replies

4. Shell Programming and Scripting

Output every certain lines.

I have a text file with 100 records. for example input file looks like: 1 firstname lastname address data 2 "' 3 "' 4 "" 5 "" 6 "" 7 "" 8 "' 9 "" 10 "" What i want for output. I want to get every 3rd line of above text file to be printed along with below info. Records #... (1 Reply)
Discussion started by: munnabhai1
1 Replies

5. Shell Programming and Scripting

printing each users by processes

hello All, i am trying to get the each users by with thier processing. I have try it in several ways but i am not getting thier my code is #!bin/bash/ users=`cat /etc/passwd | cut -d':' -f5` onlineusers=`users | tr '.' ' '` $onlineusers | while read `$users` do echo `ps -U $users`... (12 Replies)
Discussion started by: sam4now
12 Replies

6. Shell Programming and Scripting

Substituting Characters using SED

Can SED be used to substitute a character (y) with a character (Y) in a specified field? File has 12000 : delimeted rows as; HHC 1 BDE:Lastname, Firstname MI:firstname.mi.lastname@mil:SGT HHC 2 BDE:Lastname, Firstname MI:Firstname.MI.Lastname@mil:SGT I wish to replace the capital letters... (6 Replies)
Discussion started by: altamaha
6 Replies

7. Shell Programming and Scripting

sed - print only matching regex

Hi folks, Lets say I have the following text file: name, lastname, 1234, name.lastname@test.com name1, lastname1, name2.lastname2@test.com, 2345 name, 3456, lastname, name3.lastname3@test.com 4567, name, lastname, name4.lastname4@test.com I now need the following output: 1234... (5 Replies)
Discussion started by: domi55
5 Replies

8. Shell Programming and Scripting

pdadmin script

Hello all, I would need a scirpt to perform the following operation: I would like to give a spreadsheet as input with 3 columns with firstname,lastname,userid in order The script should read from the spreadsheet and search if each user exists in particular groups "Group1" by using the... (2 Replies)
Discussion started by: sophos
2 Replies

9. Shell Programming and Scripting

separating comma delimited words

Hi, I have file with text ________________________________ GROUP:firstname1.lastname1,first_name2.last_name2,first_name3.last_name3 HEAD:firstname.lastname ________________________________ I need help to pick the names separately ie.. Need out put as var1 =firstname1.lastname1... (4 Replies)
Discussion started by: rider29
4 Replies

10. Shell Programming and Scripting

Sed conditional replace

Given this row: |lastname1|middlename1|firstname1|lastname2|middlename2|firstname2 produce this result: |lastname|middlename|firstname where the resultant names are based on the presence of the #2 names above. I.e., if a #2 name is passed (usually will be null,) use that - otherwise... (8 Replies)
Discussion started by: tiggyboo
8 Replies

11. Shell Programming and Scripting

Need immediate help please.. SED command

Hello Gurus, I have some 100 files which have the content like this... tname, fullname, firstname, ) I want to remove the comma before the bracket ")". Data will be different in all the 100's of files and i have to remove the comma before the bracket.. one important thing is after comma... (3 Replies)
Discussion started by: rajshashi
3 Replies

12. Shell Programming and Scripting

Extracting string before first dash in a file name

Hi all, Given a file name such as EXAMPLE=lastname-02.30.71-firstname-town-other.tar.gz How do I print everything before the first dash (i.e. lastname) Note: I do not know exactly how many dashes or what information there will be in each file name so it is important that the code... (2 Replies)
Discussion started by: bashnewbee
2 Replies

13. What is on Your Mind?

Net Neutrality

Hi, Just wanted to know your opinion on this What you need to know about the court decision that just struck down net neutrality &mdash; Tech News and Analysis (1 Reply)
Discussion started by: ni2
1 Replies

14. UNIX for Beginners Questions & Answers

Displaying multiple variables in for loop

Hi! I've run into a problem where my variables are displayed in the wrong order. Basically I'm supposed to use a file that has information like this username:firstname:lastname:etc:etc. What I'm interested in doing is reformating it into a something more like this: username lastname,... (2 Replies)
Discussion started by: reindeermountai
2 Replies