Just getting started with UNIX programming and administration


 
Thread Tools Search this Thread
The Lounge What is on Your Mind? Just getting started with UNIX programming and administration
# 8  
Old 07-21-2016
Thank you Batunin for your comments and detailed explanation. I most say that i am humbled to here you speak this way. I have never received such help. The explanation you gave are really helpful and i believe has given me a reason to at least spend some more time with my computer learn.

This is because i have realized that there are no shortcuts to mastery. Like you said i should start out small, i strongly believe that is the right way to go about learning.

Well i plan to hang out more often here and learn from you all. Please pardon my poor vocabulary and paragraph composition. I strive daily to improve myself in the area of self expression in English language.

Once again thank you.
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

How to get started with Unix

I'm new in UNIX learning. Can you please guide me. How to get start and then step by step things in Unix. (I know all basic commands) (5 Replies)
Discussion started by: Varsha katre
5 Replies

2. UNIX for Dummies Questions & Answers

What are the career options in unix apart from unix system administration?

What are the career options in unix apart from unix system administration? (2 Replies)
Discussion started by: thulasidharan2k
2 Replies

3. UNIX for Dummies Questions & Answers

How does unix system administration, unix programming, unix network programming differ?

How does unix system administration, unix programming, unix network programming differ? Please help. (0 Replies)
Discussion started by: thulasidharan2k
0 Replies

4. UNIX for Dummies Questions & Answers

Getting Started with Unix....

Hi all I'm a beginner in Unix world.I want to know from where i should start Book,E-Book.web site ,...etc by the way how many version does unix have? i should install which version? How to install it? and very important,is there any simulator for training purpose? for example can i install unix... (2 Replies)
Discussion started by: ZarrinPour
2 Replies

5. UNIX for Dummies Questions & Answers

Carreer:Networking Programming in Unix (C programming Language)

Hello, I am trying to learn Networking Programming in C in unix enviorment. I want to know how good it is to become a network programmer. i am crazy about Network programming but i also want to opt for the best carreer options. Anybody experienced Network Programmer, please tell me is my... (5 Replies)
Discussion started by: vibhory2j
5 Replies

6. UNIX for Dummies Questions & Answers

Getting Started with Unix

I am new to Unix and want to learn it thoroughly. From where can I download books/e-books and tutorials for free of charge:confused: (2 Replies)
Discussion started by: indiansoil
2 Replies

7. UNIX for Dummies Questions & Answers

how do i get unix started

i am a total newbie...and want to learn unix....firstly...how do i get unix....if it is available on the internet then where is it?...and how do i get this to work then.....plz plz help asap...really desperate now thanx in advance (10 Replies)
Discussion started by: chaitanyamanot
10 Replies

8. Solaris

Unix Administration doubts ********

Hi, Can anyone tell me the correct answers for these: 1. You have 4 instances running on the same UNIX box. How can you determine which shared memory and semaphores are associated with which instance? 2. How do you increase the OS limitation for open files (LINUX and/or Solaris)? Thanks:p (1 Reply)
Discussion started by: dreams5617
1 Replies

9. UNIX for Dummies Questions & Answers

freeBSD Unix Administration...

Hello there ! I am little bit confuse about freeBSD and Sun Solaris, Susue, Mandrake. Is freeBSD is same like Sun Solaris ? i mean if i will have freeBSD software, i can administrator same like i am administring Unix O.S ? I want to be Unix Administrator, so if i will install freeBSD and... (3 Replies)
Discussion started by: abidmalik
3 Replies
Login or Register to Ask a Question
TAP::Parser::Result::Plan(3)				User Contributed Perl Documentation			      TAP::Parser::Result::Plan(3)

NAME
TAP::Parser::Result::Plan - Plan result token. VERSION
Version 3.28 DESCRIPTION
This is a subclass of TAP::Parser::Result. A token of this class will be returned if a plan line is encountered. 1..1 ok 1 - woo hooo! 1..1 is the plan. Gotta have a plan. OVERRIDDEN METHODS
Mainly listed here to shut up the pitiful screams of the pod coverage tests. They keep me awake at night. o "as_string" o "raw" Instance Methods "plan" if ( $result->is_plan ) { print $result->plan; } This is merely a synonym for "as_string". "tests_planned" my $planned = $result->tests_planned; Returns the number of tests planned. For example, a plan of 1..17 will cause this method to return '17'. "directive" my $directive = $plan->directive; If a SKIP directive is included with the plan, this method will return it. 1..0 # SKIP: why bother? "has_skip" if ( $result->has_skip ) { ... } Returns a boolean value indicating whether or not this test has a SKIP directive. "explanation" my $explanation = $plan->explanation; If a SKIP directive was included with the plan, this method will return the explanation, if any. "todo_list" my $todo = $result->todo_list; for ( @$todo ) { ... } perl v5.16.3 2013-05-02 TAP::Parser::Result::Plan(3)