User Tools

Site Tools


shell

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
shell [2010/05/16 11:37]
vidarh
shell [2011/09/30 07:57] (current)
192.89.97.1
Line 1: Line 1:
 ====== Setting up and using the Amiga shell ====== ====== Setting up and using the Amiga shell ======
 +
 +See also the [[http://​en.wikipedia.org/​wiki/​AmigaDOS|Wikipedia page on AmigaDOS]], which contains quite a bit of information on how to use the Amiga Shell.
  
 ===== Setting up your shell ===== ===== Setting up your shell =====
  
-The standard AmigaOS shell is pretty basic. In order to improve your experience, you're best of installing some enhancements. 
  
 If you're used to Linux/Unix, you might like to try abc-shell, a Bash compatible shell for the Amiga. If you're used to Linux/Unix, you might like to try abc-shell, a Bash compatible shell for the Amiga.
  
-==== KCON ====+==== Classic Amigas ​==== 
 + 
 +The standard AmigaOS shell is pretty basic. In order to improve your experience, you're best of installing some enhancements. 
 + 
 +=== KCON ===
  
 KCON is one of the most commonly used shell enhancements for classic AmigaOS (3.9 and earlier). It provides scroll bars, command history, tab completion and more. KCON is one of the most commonly used shell enhancements for classic AmigaOS (3.9 and earlier). It provides scroll bars, command history, tab completion and more.
-==== ViNCEd ​====+ 
 +=== ViNCEd ===
  
 [[http://​aminet.net/​package/​util/​shell/​ViNCEd|ViNCEd]] is a shell replacements for classic AmigaOS that provides Unix like job control (^Z, bg, fg), iconfication,​ lot of customization options, customizable title bar, scroll bars, command history, tab completion and more. It can replace KCON and a number of other utilities. ViNCEd is built on a library that provides the core for a text editor (hence the name), that is documented and available for custom development. [[http://​aminet.net/​package/​util/​shell/​ViNCEd|ViNCEd]] is a shell replacements for classic AmigaOS that provides Unix like job control (^Z, bg, fg), iconfication,​ lot of customization options, customizable title bar, scroll bars, command history, tab completion and more. It can replace KCON and a number of other utilities. ViNCEd is built on a library that provides the core for a text editor (hence the name), that is documented and available for custom development.
Line 16: Line 22:
 ViNCEd also ships with UnixDirs3, which gets you slightly more Unix like path handling (e.g. "cd .." works the way you'd expect if you're used to Linux/Unix) ViNCEd also ships with UnixDirs3, which gets you slightly more Unix like path handling (e.g. "cd .." works the way you'd expect if you're used to Linux/Unix)
  
-==== ZShell ====+=== ZShell ​=== 
 + 
 +[[http://​aminet.net/​package/​util/​shell/​ZShell|ZShell]] is an open source shell with command history, bash like tab completion (that is, inline rather than using a requester/​dialog box, though you can bring up a file requester with ^f), colored prompts, a number of built in shell commands and unix style pipes (e.g. "dir | more" works as expected), menus with a number of short cuts, ability to hide file patterns (*.info files for example) from the built in commands. **WARNING**:​ While ZShell is very familiar if you come from Linux, and is great when it works, it has some pretty ugly bugs that might leave you with a hung shell window and might even trash other things on your machine. 
 + 
 +==== AmigaOS4 ==== 
 + 
 +TODO 
 + 
 +==== MorphOS ​==== 
 + 
 +The standard shell in MorphOS provides scrollbars, tab completion, command history, iconification,​ lot of customization options, ability to hide file patterns and tabs. It has *nix compatibility mode for those familiar with Linux and others.
  
-[[http://​aminet.net/​package/​util/​shell/​ZShell|ZShell]] is an open source shell with command history, bash like tab completion (that is, inline rather than using a requester/​dialog box, though you can bring up a file requester with ^f), colored prompts, a number of built in shell commands and unix style pipes (e.g. "dir | more" works as expected), menus with a number of short cuts, ability to hide file patterns (*.info files for example) from the built in commands. 
  
 ===== What is the equivalent of ... in the Amiga shell? ===== ===== What is the equivalent of ... in the Amiga shell? =====
Line 29: Line 44:
  
 TODO: Expand. TODO: Expand.
- 
 ==== Amiga style options vs. Unix / Windows style options ==== ==== Amiga style options vs. Unix / Windows style options ====
  
-TODO: Describe ​ReadArgs ​style options.+TODO: Expand 
 + 
 +Amiga commands tends to use an OS supplied command line parser called ​ReadArgs. Commands that use this parser use a standard format for all their command line options. 
 + 
 +If you execute such a command with a "?"​ as the single argument, you will get a brief description of the options and their valid format. For example: 
 + 
 +    FROM/​M,​SEARCH/​A,​ALL/​S,​NONUM/​S 
 +     
 +(abridged from "​search ?"). The words are the names of the arguments, and may be supplied, but can also be omitted if the arguments are supplied in order and are still unambiguous,​ unless the argument is a boolean switch ("/​S"​). 
 + 
 +The character after "/"​ indicates the type of argument. 
 + 
 +  * /A = Mandatory argument 
 +  * /F = Argument must be last 
 +  * /M = Multiple arguments 
 +  * /N = Number 
 +  * /S = Switch (turn this option on by stating its name) 
 + 
 +Thus this would be a valid string for the program above: 
 + 
 +    search FROM DH0: SEARCH Foo ALL 
 +     
 +As would this (and they'd mean the same): 
 + 
 +    search DH0: Foo ALL 
 +  ​
  
 ==== Amiga replacements for common Unix/Linux commands ==== ==== Amiga replacements for common Unix/Linux commands ====
  
-^Linux ​              ​^Amiga ​               ^ +^Linux ​              ​^Amiga ​               ^Notes          ^ 
-|cd ..               |cd /                 | +|cat somefile.txt ​   |type somefile.txt ​   |               | 
-|ls                  |list                 | +|grep -r somefile.txt somedir %%|%% more | search somedir foo >​PIPE:​some-unique-name \\ more PIPE:​some-unique-name | TODO: Explanation of getting Unix style pipes working | 
-|ls *.txt            |list #?​.txt ​         | +|cd ..               |cd /                 |               
-|rm foo              |delete foo           |+|ls                  |list                 |               
 +|ls *.txt            |list #?​.txt ​         ​|               
 +|rm foo              |delete foo           |               | 
 +|grep foo /​somedir ​  ​|search /somedir foo  |               |  
 +|grep -r foo /​somedir|search /somedir foo ALL|             | 
 +|somecommand -?, somecmd --help etc. |somecommand ?|       |
  
shell.1274009824.txt.gz · Last modified: 2010/05/16 11:37 by vidarh