memo.xight.org

日々のメモ

カテゴリ : tcsh

1ページ目 / 全1ページ

 tcsh alias補完

1 つの引数は

% alias hoge 'hoge \!^'

  !^ で引数がとれる.

複数の引数は

% alias hoge 'hoge \!*'

  !* で引数がとれる.

簡易スケジュール

Summary

  現在スケジュールされているリストを表示

% sched

  指定時刻にコマンドを実行

% sched hh:mm command
% sched hh:mm(am|pm) command

  一定時間後にコマンドを実行

% sched +hh:mm command

  n 番目のスケジュールを削除

% sched -n

- 例
  11:00 になったら It's eleven o'clock. を表示する

% sched 11:00 echo It\'s eleven o\'clock.

tcsh カラー表

00 初期状態へ,理解しない端末もある
01 bold (太字)
04 アンダーライン
05 blink (太字になる端末が多い)
07 reverse (反転)
30 文字を black
31 文字を red
32 文字を green
33 文字を yellow
34 文字を blue
35 文字を magenta
36 文字を cyan
37 文字を white
40 背景を black
41 背景を red
42 背景を green
43 背景を yellow
44 背景を blue
45 背景を magenta
46 背景を cyan
47 背景を white

Reference

  UNIX Tools - tcsh
  http://www2u.biglobe.ne.jp/~hsaka/tool.html#tcsh_color

tcsh alias補完

clgrep で clgrep <PATTERN> [file] を clgrep <PATTERN> で利用したい.

% alias clgrep 'clgrep \!^ /home/yoshiki/memo/ChangeLog'

  !^ で引数がとれる.