![]() |
|
|
|
|
|||||||
| Forums | Portal | Register | Rules & FAQ | Contribute | Members List | Arcade | Search | Today's Posts | Mark Forums Read |
| Shell Programming and Scripting Post questions about KSH, CSH, SH, BASH, PERL, PHP, SED, AWK and OTHER shell scripts here. |
|
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| The friendly interactive shell 1.23.0 (Default branch) | iBot | Software Releases - RSS News | 0 | 01-13-2008 03:20 AM |
| Sun to make Solaris more friendly - PC Pro | iBot | UNIX and Linux RSS News | 0 | 07-09-2007 06:20 PM |
| User friendly | debut | Shell Programming and Scripting | 3 | 11-09-2005 03:13 PM |
| Friendly hello | Cheesedinverts | UNIX for Dummies Questions & Answers | 0 | 08-08-2005 04:57 AM |
| Most Neewbie friendly distribution | Rayben | UNIX for Dummies Questions & Answers | 8 | 09-06-2003 07:48 AM |
|
|
LinkBack | Thread Tools | Display Modes |
|
|||
|
Friendly command script
Hi,
I need a unix script to help my students using unix and will make it more friedly with them. The script will do something like that, when a user writes a letter, then it will be apeared to the screen the available commands or files that fit to the spesific letter that the user gives. For a example, when you write the letter `m`, the result will apear to the screen is all the commands that start with letter m. make makdir,mv and etc. Or the files in the spesific folder that start with letter īmī. If you have anything that will help with this tell me pls. Thank you |
| Forum Sponsor | ||
|
|
|
||||
|
tcsh also has stuff like this. You need to do:
set autolist for all of it to work. Let's say that "make" is the only command on my path that starts with "ma". I could type "ma" <tab> and I would see "make" on my screen. If I had "make" and "mail" as the only two commands that start with "ma", I could type "ma" ^D and I would see those two programs. This assumes that control-D is my EOF character. There is more info on the tcsh man page. |
||||
| Google UNIX.COM |