Sponsored Content
Full Discussion: Unix Shell Emulator
Top Forums UNIX for Dummies Questions & Answers Unix Shell Emulator Post 96207 by ravirajindia on Wednesday 18th of January 2006 01:46:50 PM
Old 01-18-2006
Unix Shell Emulator

Hi all:

I have windows XP and i want to learn UNIX SHELL PROGRAMMING! can you tell me any unix shell emulator or simulator which i can install on windows and learn unix shell programming (FOR SOME REASON I DONT WANT TO INSTALL LINUX)!!!

PLEASE HELP!

CHEERS
 

9 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Unix emulator for windows 98

as part of my course i have to do a lot of programming using the universities unix server. i am able to access this from home using telnet but i cannot use axe or anything to edit my files. I was wondering if anyone knew of any software that could enable me yo do this as i like working at 2am when... (1 Reply)
Discussion started by: HALLY
1 Replies

2. UNIX for Dummies Questions & Answers

uising ed in wipro uwin unix emulator

i have no clue what I am doing with the ed editor since i have never really used it.. the only thing is the sed edittor on the unix emulator I downloaded for windows is rather simple and the man pages are very vague... it doesn't function according to most linux operating systems that envoke sed..... (4 Replies)
Discussion started by: moxxx68
4 Replies

3. UNIX for Advanced & Expert Users

Unix Emulator Or Simulator

Hi all: I have windows XP and i want to learn UNIX SHELL PROGRAMMING! can you tell me any unix shell emulator or simulator which i can install on windows and learn unix shell programming (FOR SOME REASON I DONT WANT TO INSTALL LINUX)!!! PLEASE HELP! CHEERS (2 Replies)
Discussion started by: ravirajindia
2 Replies

4. UNIX for Dummies Questions & Answers

UNIX Emulator

Where can I download a unix Emulator for Training and education of the IT personal in my company. (9 Replies)
Discussion started by: st_matan
9 Replies

5. UNIX for Dummies Questions & Answers

Unix Emulator for DOS Shell

would like to have ls, wc -l, etc all availble in this silly dos shell I'm stuck in thanks! (1 Reply)
Discussion started by: robersh
1 Replies

6. UNIX for Dummies Questions & Answers

which version of unix and termnail emulator

hello i have a computer sat around doing nothing so i what to install a version of Unix on it, i then want to access the computer from my pc though my home network e.g router. The thing is what version of unix should i use there are so many and being new to all of this some advice would be... (2 Replies)
Discussion started by: superdude
2 Replies

7. UNIX for Dummies Questions & Answers

Online UNIX emulator for Korn Shell scripting

Hi, I am very new to UNIX and I wanted to know if there is any online UNIX emulator in which I can practice Korn shell scripting. I have internet access, but my machine's OS is Windows XP. I just had my UNIX fundamental class and wanted to practice some shell scripting. I am not in a position to... (1 Reply)
Discussion started by: eswasas
1 Replies

8. UNIX Desktop Questions & Answers

good Unix emulator for vista PC

Dear experts! can you please advise if there are good solutions to emulate Unix on a vista PC? I'm on windows by default, as many on my crucial applications are exclusively win-based, so rebooting each time I need UNIX functionality in a double-boot configuration is not my case.. But I do like... (1 Reply)
Discussion started by: roussine
1 Replies

9. UNIX for Dummies Questions & Answers

Unix Emulator Cygwin

Hi, I installed unix emulator cygwin, it does not allow me to open vi editor. Can anybody know if cygwin supports vi. if not can somebody please refer a good emulator. (5 Replies)
Discussion started by: siquadri
5 Replies
CPANPLUS(3)						User Contributed Perl Documentation					       CPANPLUS(3)

NAME
CPANPLUS - API & CLI access to the CPAN mirrors SYNOPSIS
### standard invocation from the command line $ cpanp $ cpanp -i Some::Module $ perl -MCPANPLUS -eshell $ perl -MCPANPLUS -e'fetch Some::Module' DESCRIPTION
The "CPANPLUS" library is an API to the "CPAN" mirrors and a collection of interactive shells, commandline programs, etc, that use this API. GUIDE TO DOCUMENTATION
GENERAL USAGE This is the document you are currently reading. It describes basic usage and background information. Its main purpose is to assist the user who wants to learn how to invoke CPANPLUS and install modules from the commandline and to point you to more indepth reading if required. API REFERENCE The "CPANPLUS" API is meant to let you programmatically interact with the "CPAN" mirrors. The documentation in CPANPLUS::Backend shows you how to create an object capable of interacting with those mirrors, letting you create & retrieve module objects. CPANPLUS::Module shows you how you can use these module objects to perform actions like installing and testing. The default shell, documented in CPANPLUS::Shell::Default is also scriptable. You can use its API to dispatch calls from your script to the CPANPLUS Shell. COMMANDLINE TOOLS
STARTING AN INTERACTIVE SHELL You can start an interactive shell by running either of the two following commands: $ cpanp $ perl -MCPANPLUS -eshell All commands available are listed in the interactive shells help menu. See "cpanp -h" or CPANPLUS::Shell::Default for instructions on using the default shell. CHOOSE A SHELL By running "cpanp" without arguments, you will start up the shell specified in your config, which defaults to CPANPLUS::Shell::Default. There are more shells available. "CPANPLUS" itself ships with an emulation shell called CPANPLUS::Shell::Classic that looks and feels just like the old "CPAN.pm" shell. You can start this shell by typing: $ perl -MCPANPLUS -e'shell Classic' Even more shells may be available from "CPAN". Note that if you have changed your default shell in your configuration, that shell will be used instead. If for some reason there was an error with your specified shell, you will be given the default shell. BUILDING PACKAGES "cpan2dist" is a commandline tool to convert any distribution from "CPAN" into a package in the format of your choice, like for example ".deb" or "FreeBSD ports". See "cpan2dist -h" for details. FUNCTIONS
For quick access to common commands, you may use this module, "CPANPLUS" rather than the full programmatic API situated in "CPANPLUS::Backend". This module offers the following functions: $bool = install( Module::Name | /A/AU/AUTHOR/Module-Name-1.tgz ) This function requires the full name of the module, which is case sensitive. The module name can also be provided as a fully qualified file name, beginning with a /, relative to the /authors/id directory on a CPAN mirror. It will download, extract and install the module. $where = fetch( Module::Name | /A/AU/AUTHOR/Module-Name-1.tgz ) Like install, fetch needs the full name of a module or the fully qualified file name, and is case sensitive. It will download the specified module to the current directory. $where = get( Module::Name | /A/AU/AUTHOR/Module-Name-1.tgz ) Get is provided as an alias for fetch for compatibility with CPAN.pm. shell() Shell starts the default CPAN shell. You can also start the shell by using the "cpanp" command, which will be installed in your perl bin. FAQ
For frequently asked questions and answers, please consult the "CPANPLUS::FAQ" manual. BUG REPORTS
Please report bugs or other issues to <bug-cpanplus@rt.cpan.org<gt>. AUTHOR
This module by Jos Boumans <kane@cpan.org>. COPYRIGHT
The CPAN++ interface (of which this module is a part of) is copyright (c) 2001 - 2007, Jos Boumans <kane@cpan.org>. All rights reserved. This library is free software; you may redistribute and/or modify it under the same terms as Perl itself. SEE ALSO
CPANPLUS::Shell::Default, CPANPLUS::FAQ, CPANPLUS::Backend, CPANPLUS::Module, cpanp, cpan2dist CONTACT INFORMATION
o Bug reporting: bug-cpanplus@rt.cpan.org o Questions & suggestions: bug-cpanplus@rt.cpan.org perl v5.16.3 2013-05-20 CPANPLUS(3)
All times are GMT -4. The time now is 04:40 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy