home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1993 #3 / NN_1993_3.iso / spool / comp / sys / amiga / introduc / 1824 < prev    next >
Encoding:
Internet Message Format  |  1993-01-25  |  878 b 

  1. Path: sparky!uunet!haven.umd.edu!darwin.sura.net!newsserver.jvnc.net!yale.edu!ira.uka.de!scsing.switch.ch!sicsun!disuns2!schaefer
  2. From: schaefer@disuns2.epfl.ch (Marc Schaefer)
  3. Newsgroups: comp.sys.amiga.introduction
  4. Subject: Re: Aliases
  5. Message-ID: <5701@disun3.epfl.ch>
  6. Date: 25 Jan 93 10:06:37 GMT
  7. References: <-186469997@hpopd.pwd.hp.com>
  8. Reply-To: schaefer@disuns2.epfl.ch (Marc Schaefer)
  9. Organization: Ecole Polytechnique Federale de Lausanne
  10. Lines: 20
  11.  
  12. No, I don't think using aliases with spaces like
  13. ls -laR aliased to list is possible.
  14.  
  15. You have however either the possibility to add an ls-like command
  16. to your system, or doing a script in S: with bit s, and provided
  17. S: is on your path, it will work.
  18.  
  19. The script should check the argument and if it is "-laR", use list.
  20.  
  21. eg:
  22.  
  23. .bra {
  24. .ket }
  25. .key param/A/F
  26.  
  27. if EQ "-laR" {param}
  28.     list
  29. elseif
  30.     echo "syntax error"
  31. endif
  32.