home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-385-Vol-1of3.iso / k / ksh48.zip / etc / profile.ksh < prev    next >
Text File  |  1992-05-28  |  770b  |  50 lines

  1. # profile for OS/2 version of ksh
  2.  
  3. set -o emacs
  4. set -o hashall
  5.  
  6. bind ^Q=quote
  7. bind ^I=complete
  8. bind ^[^[=list-file
  9.  
  10. bind ^0H=up-history
  11. bind ^0P=down-history
  12. bind ^0K=backward-char
  13. bind ^0M=forward-char
  14. bind ^0s=backward-word
  15. bind ^0t=forward-word
  16.  
  17. bind ^0G=beginning-of-line
  18. bind ^0O=end-of-line
  19. bind ^0w=beginning-of-history
  20. bind ^0u=end-of-history
  21.  
  22. bind ^0S=eot-or-delete
  23.  
  24. FCEDIT=d:/bin/me.exe
  25. PS1='!. !$ '
  26.  
  27. alias a:='cd a:'
  28. alias b:='cd b:'
  29. alias c:='cd c:'
  30. alias d:='cd d:'
  31. alias e:='cd e:'
  32. alias f:='cd f:'
  33. alias g:='cd g:'
  34.  
  35. alias h='fc -l'
  36. alias j='jobs'
  37. alias which='type'
  38. alias back='cd -'
  39. alias cls='print -n "\033[H\033[2J"'
  40.  
  41. dir() {
  42.   cmd /c dir $*
  43. }
  44.  
  45. start() {
  46.   cmd /c start $*
  47. }
  48.  
  49. print -n "\033[7m\033[2J"
  50.