home *** CD-ROM | disk | FTP | other *** search
/ FM Towns: Free Software Collection 1 / FREEWARE.BIN / gunix / readme.030 < prev    next >
Text File  |  1989-10-17  |  2KB  |  54 lines

  1. 今回のversionから次のコマンドラインをサポ-トします。
  2.  
  3.  
  4.  
  5.     1.コマンドの引き数にヒストリの参照を可能にしました。 
  6.  
  7.  
  8.         command ![history]$[argment_no] C/R
  9.  
  10.  
  11.         ! ............... Reference to command-history. 
  12.  
  13.         [history] ....... Command history number. 
  14.                           Default is last command. 
  15.  
  16.         $ ............... Reference to The command line argments. 
  17.  
  18.         [-] ............. Indicate argment number from the last argment. 
  19.                           When the argment number was given. 
  20.                           Default is from the first argment. 
  21.  
  22.         [argment_no] .... Indicate target argment position
  23.                           on the command line. 
  24.                           Default is the last argment. 
  25.  
  26.  
  27.     sample 
  28.  
  29.        [root]#[20] vi e:/gnu/twssrc/console/lshintrf.c 
  30.        [root]#[21] cc -c !$ 
  31.        cc -c e:/gnu/twssrc/console/lshintrf.c 
  32.        [root]#[22] cp !$ a:/tmp/t.c 
  33.        copy e:/gnu/twssrc/console/lshintrf.c a:/tmp/t.c 
  34.        [root]#[23] gdiff !20$ !22$ 
  35.        gdiff e:/gnu/twssrc/console/lshintrf.c a:/tmp/t.c 
  36.        [root]#[24] pwd 
  37.        [root]#[25] cat !23$-1 
  38.        type e:/gnu/twssrc/console/lshintrf.c
  39.        [root]#[26] cat !23$1 
  40.        type e:/gnu/twssrc/console/lshintrf.c
  41.        [root]#[27] rm !22$
  42.        del a:/tmp/t.c 
  43.  
  44.  
  45.  
  46.    2.history コマンド の option 追加。
  47.  
  48.        history 数字      : 指定された番号から表示。
  49.        history -数字     : 最近のhistoryから指定された個数を表示する。 
  50.  
  51.  
  52.  
  53.  
  54.