The UNIX and Linux Forums  


Go Back   The UNIX and Linux Forums > Top Forums > Shell Programming and Scripting
.
google unix.com




Thread: Hot Keys
View Single Post in the UNIX and Linux Forums - Click on the Thread or Permalink to View Entire Thread -->
  #2 (permalink)  
Old 12-06-2006
Corona688 Corona688 is offline
Registered User
  
 

Join Date: Aug 2005
Location: Saskatchewan
Posts: 1,960
What do you mean by using UNIX in a DOS window? Are you connecting to a shell with ssh or something like that?

I'm not sure I understand your example. You want to type in A12.1.13.15 and have it come out as aaaaBbbbCccc? Try

Code:
$ alias A12.1.13.15="echo 'Hello there'"
$ A12.1.13.15
Hello there
$