|
| |
| | Shell (computing) - Wikipedia, the free encyclopedia |
 | | In computing, a shell is a piece of software that essentially provides a kind of interface for end-users. |  | | Older versions also include Program Manager which was the Shell for the 3.x series of Microsoft Windows. |  | | The best choice is often determined by the way in which a computer will be used. |
|
http://en.wikipedia.org/wiki/Operating_system_shell
(452 words)
|
|
| |
| | [No title] |
 | | An Introduction to the C shell USD:4-1 An Introduction to the C shell William Joy (revised for 4.3BSD by Mark Seiden) Computer Science Division Department of Electrical Engineering and Computer Science University of California, Berkeley Berkeley, California 94720 ABSTRACT Csh is a new command language interpreter for UNIX systems. |  | | This is necessary if you add a com- mand to a directory in the current shell's search path and wish An Introduction to the C shell USD:4-33 the shell to find it, since otherwise the hashing algorithm may tell the shell that the command wasn't in that directory when the hash table was computed. |  | | A mechanism for saving the shell environment after reading the.cshrc file and quickly restoring it is under development, but for now you should try to limit the number of aliases you have to a reasonable number... |
|
http://www.cis.ksu.edu/VirtualHelp/Info/Misc/csh.txt
(10011 words)
|
|
| |
| | C Shell Programming |
 | | Shell scripts are often written to handle some of the more tedious tasks that a user encounters on a regular basis. |  | | A simple C shell script could be a list of Unix commands that archives and compresses the users home directory and copies it to a specified mounted disk partition for storage |  | | This could be any shell or even other scripting environments such as perl (Practical Extraction and Report Language) [1] or tcl (Tool Command Language) [2] which are Unix scripting languages but not shells (at least not interactive shells like those discussed in this book). |
|
http://snap.nlc.dcccd.edu/reference/shellguide/node72.html
(487 words)
|
|
| |
| | csh -- C Shell, a shell (command interpreter) with C-like syntax |
 | | As the shell searches each directory in the search path, it appends each of the extensions in the list, in turn, to the command name and if it matches a file name in that directory, that file is executed as though it had that extension. |  | | The arguments are read as input to the C Shell and the resulting command(s) are executed in the context of the current shell. |  | | Without this option, C Shell is only interactive when its input and output are terminals. |
|
http://www.mkssoftware.com/docs/man1/csh.1.asp
(7492 words)
|
|
| |
| | The C Shell |
 | | The C shell has three separate files which are used for customizing its environment. |  | | With a shell, users can type in commands and run programs on a Unix system. |  | | The C shell reads the.login file after it has read the.cshrc file. |
|
http://www.cs.duke.edu/csl/docs/csh.html
(1741 words)
|
|
| |
| | C Shell Scripts |
 | | Construction of useful shell scripts requires that it be possible to evaluate expressions in the shell based on the current values of certain variables. |  | | is replaced by the next line of input read from the shell's standard input, instead of using the next line in the script being processed. |  | | The switch structure is like that found in the C programming language. |
|
http://docs.hp.com/en/B2355-90046/ch14s03.html
(1262 words)
|
|
| |
| | Shell Programming |
 | | C is a small language; it has no string data type. |  | | All functions defined in the standard C library header string.h are valid for both pointers to char and strings. |  | | Most users treat these MS-DOS/Unix shells as command interpreters; their day-to-day programming tasks are handled in C or other conventional programming languages. |
|
http://www.softintegration.com/docs/ch/shell
(1308 words)
|
|
| |
| | C-Shell |
 | | Shell variables are referenced by preceding their name with a dollar sign ($). |  | | Shell variables can also take numeric values, allowing them to be used as loop indexes. |  | | Earlier in this manual we told you that Unix has no minimum matching. |
|
http://stsdas.stsci.edu/documents/UUG/UnixGuide.book_24.html
(1896 words)
|
|
| |
| | Csh Programming Considered Harmful |
 | | Lack of proficiency in the Bourne shell has been known to cause errors in /etc/rc and.cronrc files, which is a problem, because you *must* write these files in that language. |  | | In the Bourne shell, this VAR=foo cmds args is the same as (export VAR; VAR=foo; cmd args) or csh's (setenv VAR; cmd args) You can't use :t, :h, etc on envariables. |  | | In the Bourne shell, you might say: echo "$0: cannot find $file" 1>and2 but in the csh, you can't redirect stdout out stderr, so you end up doing something silly like this: sh -c 'echo "$0: cannot find $file" 1>and2' 1b. |
|
http://www.faqs.org/faqs/unix-faq/shell/csh-whynot
(2440 words)
|
|
| |
| | Help Files: C Shell: Internals |
 | | When you login, Unix finds the C shell program in the file "/bin/csh" and starts it running as a process on your terminal. |  | | Also, if the first command word begins with a /, the shell considers it to be the name of the program file to execute, for example, the command "/usr/ucb/vi.cshrc" would work. |  | | The Unix kernel requires the C shell -- in fact, requires all programs that run other programs -- to use execl. |
|
http://www.decf.berkeley.edu/help/unix/csh/internals.html
(2188 words)
|
|
| |
| | Help Files: C Shell: Expression Syntax |
 | | Evaluation means asking the question "Is it true that expression?", where expression is a statement or assertion phrased in C Shell terms. |  | | You may use any of the operators and precedences valid in the C programming language (without tremendously reliable results), and octal numbers must begin with a 0. |  | | Except for providing the only way to store the results of an arithmetic or logic computation, it is identical to the "set" command. |
|
http://www.decf.berkeley.edu/help/unix/csh/expressions.html
(743 words)
|
|
| |
| | UNIX shell differences and how to change your shell (Monthly Posting) |
 | | Further information The Bourne shell, the C-Shell and the Korn Shell (if you have it) are all distributed as standard with your UNIX operating system, information on these should come with your operating system, bug reports etc should be sent to your operating system vendor. |  | | The theory behind the change was fairly good, the new input language was to resemble C, the language in which UNIX itself was written, but they made a complete mess of implementing it. |  | | It had (and still does) a very strong powerful syntactical language built into it, with all the features that are commonly considered to produce structured programs; it has particularly strong provisions for controlling input and output and in its expression matching facilities. |
|
http://www.faqs.org/faqs/unix-faq/shell/shell-differences
(2225 words)
|
|
| |
| | Daemon News '200202' : '"Making friends with C-Shell and TC-Shell -- Part III "' |
 | | Common (system-wide) shell start-up files can be used to set up a convenient environment for all users on the system, and personal start-up files allow to create an individual working environment. |  | | This means, each program started by the shell on a user's request, inherits a copy of the set of environment variables the shell owns. |  | | Worthwhile to remember are especially the variables PATH, the value of which defines the search path for executable files in the system, and SHELL containing the name of the shell to invoke whenever a utility program needs to start a shell. |
|
http://ezine.daemonnews.org/200202/tcsh3.html
(1960 words)
|
|
| |
| | [No title] |
 | | Fewer ways to test for missing variables The C shell provides a way to test if a variable exists - using the $?var name: % if ($?A) then % echo variable A exists % endif However, there is no simple way to determine if the variable has a value. |  | | The C shell allows you to repeat only the first part of a complex command, like the single line with the "if" statement. |  | | The C shell provides one way to read a line: % set ans = $< The trouble is - this ALWAYS reads from standard input. |
|
http://www.grymoire.com/Unix/CshTop10.txt
(3503 words)
|
|
| |
| | C shell - a Whatis.com definition |
 | | Once considered "buggy", the C shell has had a number of different versions developed to overcome the flaws in the original program. |  | | C shell is the Unix shell (command execution program, often called a command interpreter) created by Bill Joy at the University of California at Berkeley as an alternative to UNIX's original shell, the Bourne shell. |  | | The C shell was invented for programmers who prefer a syntax similar to that of the C programming language. |
|
http://whatis.techtarget.com/definition/0,,sid9_gci214637,00.html
(305 words)
|
|
| |
| | C Shell Scripts |
 | | As an example, we will show a shell script which copies all files from one directory to a new one, also creating that new directory. |  | | Inside the loop the current shell variable is defined in |  | | Under the UNIX environment one can also choose which shell to use, although we shall only give examples in the most commonly used shell, the C-shell ( |
|
http://bima.astro.umd.edu/checker/node22.html
(631 words)
|
|
| |
| | C shell - Computing Reference - eLook.org |
 | | Presumably, csh's C-like syntax was intended to endear it to programmers but sadly it lacks some sh features which are useful for writing shell scripts so you need to know two different syntaxes for every shell construct. |  | | (csh) The Unix command-line interpreter shell and script language by William Joy, originating from Berkeley Unix. |  | | Unix systems up to around Unix Version 7 only had one shell - the Bourne shell, sh. |
|
http://www.elook.org/computing/c-shell.htm
(131 words)
|
|
| |
| | C shell - definition of C shell in Encyclopedia |
 | | The C shell (csh) is a Unix shell developed by Bill Joy for the BSD Unix system. |  | | Its syntax is modeled after the C programming language. |  | | In any case, since the standard Bourne shell is guaranteed to be present on all Single UNIX Specification-compliant systems, most recommend the use of |
|
http://encyclopedia.laborlawtalk.com/C_shell
(204 words)
|
|
| |
| | Hamilton Laboratories: Tools for Software Developers |
 | | We are the developer and publisher of Hamilton C shell, a complete recreation of the UNIX csh shell and the numerous popular UNIX utilities such as grep, fgrep, head, tail, diff, sed, cron, tar, etc. The result is a much faster, more powerful command line environment than the standard Windows command prompt. |  | | The entire product was written from scratch for Windows by a single author. |
|
http://www.hamiltonlabs.com
(96 words)
|
|
| |
| | BASH - GNU Project - Free Software Foundation (FSF) |
 | | Copyright (C) 1998 Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA |  | | BASH - GNU Project - Free Software Foundation (FSF) |  | | Bash is the shell, or command language interpreter, that will appear in the GNU operating system. |
|
http://www.gnu.org/software/bash/bash.html
(196 words)
|
|
| |
| | The Shell |
 | | After you log in, Unix looks up what shell you'd like to use (in the file |  | | One of the more common ones is known as the C shell. |  | | You can see which shell you're using by doing |
|
http://www.cs.indiana.edu/hyplan/robh/unix-at-iu/node15.html
(209 words)
|
|
| |
| | Making C Shell Jump Through Hoops @ LINUXWORLD MAGAZINE |
 | | There are couple of basic redirections that you'll want to know how to accomplish within the Csh environment, the most important of which is to redirect stderr (standard error) to the same place as stdout (standard out). |  | | My focus here is ultimately on shell scripting, so I have to point out that the vast majority of Linux shell scripts are written in a Bourne Shell-compatible scripting environment, whether it's directly in /bin/sh or in a more sophisticated environment like Bash. |  | | This time I'll turn my attention to the C shell with its different command-line syntax. |
|
http://www.sys-con.com/story/?storyid=46483&DE=1
(1569 words)
|
|
| |
| | TCSH: Welcome |
 | | Tcsh is an enhanced, but completely compatible version of the Berkeley UNIX C shell (csh). |  | | It is a command language interpreter usable both as an interactive login shell and a shell script command processor. |  | | It includes a command-line editor, programmable word completion, spelling correction, a history mechanism, job control and a C-like syntax. |
|
http://www.tcsh.org
(277 words)
|
|
| |
| | Cultured Perl: Managing Linux Configuration Files |
 | | For a few programs I use daily, I'll show how I handle multiple platforms with the help of my configuration system and changing the configuration files themselves. |  | | All the examples I show use the C shell to set environment variables. |  | | Modifying them to use GNU bash or something else should not be terribly difficult. |
|
http://www.devshed.com/c/a/Perl/Cultured-Perl-Managing-Linux-Configuration-Files
(713 words)
|
|
| |
| | C-Shell Part I |
 | | "C-Shell Part I" Anatomy of a Shell Script |
|
http://cespc1.kumoh.ac.kr/~hspark/semi/csh1/index.htm
(8 words)
|
|
| |
| | c Shell's Consulting - Columbus, OH - Custom website design in Columbus, Ohio. |
 | | c Shell's Consulting is also skilled in programming javascript, perl, and CGI scripts to provide the most interactive experience one can have with your website. |  | | Would you like your business to be accessible to millions with a simple click of a button? |  | | For instance, javascript can be used to make text appear when you mouse over a menu item, or it can be used to keep web-bot from pulling your email addresses from your webpages while still keeping them available for your clients. |
|
http://www.cshellsweb.com
(153 words)
|
|
| |
| | TCSH: Home |
 | | C shell with file name completion and command line editing |
|
http://www.tcsh.org/Home
(10 words)
|
|
| |
| | Royal Dutch Shell Unification Completed - Forbes.com |
 | | The value of the Royal Dutch Shell shares may go down as well as up. |  | | Past performance is no guarantee for future returns. |  | | Delivery of the Royal Dutch Shell "A" shares and ADRs to those holders of Royal Dutch Shares who accepted the Royal Dutch Offer prior to its the expiry is expected to occur no later than 25 July 2005. |
|
http://www.forbes.com/prnewswire/feeds/prnewswire/2005/07/20/prnewswire200507200424PR_NEWS_B_GBL_HS_UKW004.html
(1272 words)
|
|
| |
| | Hamilton C shell 2003 Product Overview |
 | | Hamilton C shell recreates the original UNIX C shell and utilities, adding numerous enhancements. |  | | Now with fully automated install and uninstall, and on-line hypertext documentation and PowerPoint tutorials. |  | | This page was last modified September 14, 2003. |
|
http://www.hamiltonlabs.com/cshell.htm
(235 words)
|
|
| |
| | LDB CD/DVD Packaging,CD-R/DVD-R, CD/DVD Cases,Poly Cases, C Shell, Mailers, Sleeves,CD Label |
 | | We value responsive customer service and prompt shipping, above all, customer satisfaction.We provide only the highest quality products to meet your needs. |  | | LDB CD/DVD Packaging,CD-R/DVD-R, CD/DVD Cases,Poly Cases, C Shell, Mailers, Sleeves,CD Label |  | | CD & DVD CLAMSHELL, C SHELL, D SHELL, O SHELL, TRIMPAK |
|
http://store.ldbmart.com
(131 words)
|
|
|