0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

<linux コマンド3.プログラム管理>

Posted at

プログラム中断
ctrl+Z
プログラムの強制終了
ctrl+C

ジョブの表示
$jobs

プロセスIDも表示する
$jobs -l

プロセスの状態を表示
(a:すべてのユーザ、u:ユーザ名、x:デーモンなども表示、w:1プロセスの表示行数を増やす)
$ps auxw

プロセスID XXXXを終了させる。
$kill XXXX
応答しないプロセスを終了させる。
$kill -KILL XXXX

カレントjobを終了させる。
$kill %%

クーロンの表示
$crontab -l
クーロンの登録
$crontab ~/.crontab

クーロンファイル形式
分 時間 日 月 曜日 コマンド

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?