Sponsored Content
Full Discussion: Certification on Unix
Top Forums UNIX for Advanced & Expert Users Certification on Unix Post 302380849 by TonyLawrence on Wednesday 16th of December 2009 10:22:49 AM
Old 12-16-2009
Which Unix? And what are you looking for - where to take tests or where to get help preparing?


My Unix/Linux Certification Exam Resources might help with the latter.
 

10 More Discussions You Might Find Interesting

1. HP-UX

Unix Certification

Hi, Can anyone please let me know about Unix Certifications available? Regards, Puspendu (4 Replies)
Discussion started by: puspendu
4 Replies

2. UNIX for Dummies Questions & Answers

unix certification

hi, Can you you please tell me which will be the best Unix certification to get. (1 Reply)
Discussion started by: asinha14
1 Replies

3. UNIX for Dummies Questions & Answers

Unix Certification

I am seeking to move from Mainframe Storage Management to Open Systems, possibly as an AIX administrator. Does anyone know of a good Unix certification program that can get my foot in the door? (3 Replies)
Discussion started by: ednan171
3 Replies

4. What is on Your Mind?

UNIX Certification

I am taking the UNIX Essentials/UNIX Core class on DVD. Two certifications are offered with it. What would be the next logical step in UNIX training after that? Would I need an instructor-led class? My company is offering $2500 towards Open Systems training and I would like to make the best... (1 Reply)
Discussion started by: ednan171
1 Replies

5. UNIX for Advanced & Expert Users

certification in Unix ?

Hi all General question ...please help ... Can anybody tell me how to get certified in UNIX ? Is/are there any certificaion paper(s) for UNIX OR any organization helps outsiders to get cerified in Unix. I know about Linux certification ..red hat and all.... But is there an specific Unix... (2 Replies)
Discussion started by: varungupta
2 Replies

6. UNIX and Linux Applications

Please help me for UNIX certification

Hi, Last 2 years i am working in unix environment .I am interested to do some certification on UNIX.Could you please suggest me regarding this.. Thanks in adcance p kumar (1 Reply)
Discussion started by: sradha
1 Replies

7. HP-UX

Unix Certification

Which certification I can go for?? (1 Reply)
Discussion started by: bharat.techie
1 Replies

8. Shell Programming and Scripting

UNIX Certification

Hello Everybody, Is there any unix certification , where i can be a unix certified. (1 Reply)
Discussion started by: pritish.sas
1 Replies

9. Shell Programming and Scripting

UNIX Certification

Hi, I am willing to do UNIX certification other than Administration. Could any one suggest me which unix developers certification will be better to do get good employment opportunities. Thanks in advance.:b::b: (2 Replies)
Discussion started by: jhon1257
2 Replies

10. UNIX for Dummies Questions & Answers

UNIX certification

Hi there, I have 7+ IT experience worked in various support project in unix, pl/sql and C. I would like to take certification in unix (but I worked in shell scripting not in admin). I surfed net for certification but all are suggesting for admin certification like redhat, scsa..... I want to... (0 Replies)
Discussion started by: stew
0 Replies
Mojo::URL(3pm)						User Contributed Perl Documentation					    Mojo::URL(3pm)

NAME
Mojo::URL - Uniform Resource Locator SYNOPSIS
use Mojo::URL; # Parse my $url = Mojo::URL->new('http://sri:foobar@kraih.com:3000/foo/bar?foo=bar#23'); say $url->scheme; say $url->userinfo; say $url->host; say $url->port; say $url->path; say $url->query; say $url->fragment; # Build my $url = Mojo::URL->new; $url->scheme('http'); $url->userinfo('sri:foobar'); $url->host('kraih.com'); $url->port(3000); $url->path('/foo/bar'); $url->path('baz'); $url->query->param(foo => 'bar'); $url->fragment(23); say $url; DESCRIPTION
Mojo::URL implements a subset of RFC 3986 and RFC 3987 for Uniform Resource Locators with support for IDNA and IRIs. ATTRIBUTES
Mojo::URL implements the following attributes. "authority" my $authority = $url->authority; $url = $url->authority('root:pass%3Bw0rd@localhost:8080'); Authority part of this URL. "base" my $base = $url->base; $url = $url->base(Mojo::URL->new); Base of this URL. "fragment" my $fragment = $url->fragment; $url = $url->fragment('foo'); Fragment part of this URL. "host" my $host = $url->host; $url = $url->host('127.0.0.1'); Host part of this URL. "port" my $port = $url->port; $url = $url->port(8080); Port part of this URL. "scheme" my $scheme = $url->scheme; $url = $url->scheme('http'); Scheme part of this URL. "userinfo" my $userinfo = $url->userinfo; $url = $url->userinfo('root:pass%3Bw0rd'); Userinfo part of this URL. METHODS
Mojo::URL inherits all methods from Mojo::Base and implements the following new ones. "new" my $url = Mojo::URL->new; my $url = Mojo::URL->new('http://127.0.0.1:3000/foo?f=b&baz=2#foo'); Construct a new Mojo::URL object. "clone" my $url2 = $url->clone; Clone this URL. "ihost" my $ihost = $url->ihost; $url = $url->ihost('xn--bcher-kva.ch'); Host part of this URL in punycode format. # "xn--da5b0n.net" Mojo::URL->new('http://X.net')->ihost; "is_abs" my $success = $url->is_abs; Check if URL is absolute. "parse" $url = $url->parse('http://127.0.0.1:3000/foo/bar?fo=o&baz=23#foo'); Parse URL. "path" my $path = $url->path; $url = $url->path('/foo/bar'); $url = $url->path('foo/bar'); $url = $url->path(Mojo::Path->new); Path part of this URL, relative paths will be appended to the existing path, defaults to a Mojo::Path object. # "http://mojolicio.us/DOM/HTML" Mojo::URL->new('http://mojolicio.us/perldoc/Mojo')->path('/DOM/HTML'); # "http://mojolicio.us/perldoc/DOM/HTML" Mojo::URL->new('http://mojolicio.us/perldoc/Mojo')->path('DOM/HTML'); # "http://mojolicio.us/perldoc/Mojo/DOM/HTML" Mojo::URL->new('http://mojolicio.us/perldoc/Mojo/')->path('DOM/HTML'); "query" my $query = $url->query; $url = $url->query(replace => 'with'); $url = $url->query([merge => 'with']); $url = $url->query({append => 'to'}); $url = $url->query(Mojo::Parameters->new); Query part of this URL, defaults to a Mojo::Parameters object. # "2" Mojo::URL->new('http://mojolicio.us?a=1&b=2')->query->param('b'); # "http://mojolicio.us?a=2&c=3" Mojo::URL->new('http://mojolicio.us?a=1&b=2')->query(a => 2, c => 3); # "http://mojolicio.us?a=2&b=2&c=3" Mojo::URL->new('http://mojolicio.us?a=1&b=2')->query([a => 2, c => 3]); # "http://mojolicio.us?b=2" Mojo::URL->new('http://mojolicio.us?a=1&b=2')->query([a => undef]); # "http://mojolicio.us?a=1&b=2&a=2&c=3" Mojo::URL->new('http://mojolicio.us?a=1&b=2')->query({a => 2, c => 3}); "to_abs" my $abs = $url->to_abs; my $abs = $url->to_abs(Mojo::URL->new('http://kraih.com/foo')); Clone relative URL and turn it into an absolute one. "to_rel" my $rel = $url->to_rel; my $rel = $url->to_rel(Mojo::URL->new('http://kraih.com/foo')); Clone absolute URL and turn it into a relative one. "to_string" my $string = $url->to_string; Turn URL into a string. SEE ALSO
Mojolicious, Mojolicious::Guides, <http://mojolicio.us>. perl v5.14.2 2012-09-05 Mojo::URL(3pm)
All times are GMT -4. The time now is 03:49 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy