![]() |
Helloやアメリカ合衆国へようこそ! UNIXおよびLinuxフォーラム!訪問し、当社のグローバルコミュニティに参加いただきありがとうございます。
|
|
Googleのunix.com
|
|||||||
| シェルプログラミングとスクリプティング KSH 、 CSH 、 shに、 bashの、はPerl 、 PHPは、削除するsed 、 Awkの、他のシェルスクリプトやシェルスクリプト言語についての質問の投稿はこちら。 |
その他のUNIXおよびLinuxフォーラムトピックは参考にすること
|
||||
| スレッド | スレッドスターター | フォーラム | 返信 | 最後の投稿 |
| キャッチングするCtrl - CまたはCtrl - Dを | sendhilmani123 | シェルプログラミングとスクリプティング | 2 | 2006年5月2日 05:02午後 |
| どのようにするCtrl + Cを有効にするにはksh | dradhzn | シェルプログラミングとスクリプティング | 0 | 2006年5月1日 10:32午後 |
| 無効にするCtrl - cを、 Ctrl - Dを、 Ctrl - Dをkshスクリプトの中で | wtofu | AIX | 6 | 2005年6月29日 04:41午後 |
| 私のするCtrl + Cで動作しません | yankee428 | UNIXのダミー質問と回答のため | 3 | 2005年6月2日 01:35午後 |
| スクリプトするCtrl + Cで | newtounix | UNIXのダミー質問と回答のため | 1 | 2001年3月19日 05:23午後 |
![]() |
|
|
LinkBack | スレッドツール | このスレッドを検索 | スレッドを評価 | 表示モード |
|
|
|
||||
|
引用:
しかし、私はUnixのすべての味を知らない。 通常nohupは、コマンドの引数として与えられたの起動時に実行されているが、実行中のプロセスにアタッチすることはできません。 場合使うことがペシャンコにあなたの仕事の制御を実行している内蔵 縁を切る コマンドのように コード:
$ echo $0 bash $ sleep 600 & [1] 5764 $ disown -h %1 私は男のbashを参照してください5月: コード:
disown [-ar] [-h] [jobspec ...]
Without options, each jobspec is removed from the table of
active jobs. If the -h option is given, each jobspec is not
removed from the table, but is marked so that SIGHUP is not sent
to the job if the shell receives a SIGHUP. If no jobspec is
present, and neither the -a nor the -r option is supplied, the
current job is used. If no jobspec is supplied, the -a option
means to remove or mark all jobs; the -r option without a job‐
spec argument restricts operation to running jobs. The return
value is 0 unless a jobspec does not specify a valid job.
|