Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
$ ! bash/shell スクリプトに存在します。存在する場合は、その使用目的をお知らせください。echo $!コマンドラインで実行すると空白になるのはなぜですか?
echo $!
他の回答に加えて、このエコー
現在のシェルでバックグラウンドでプロセスをまだ実行していない場合は、空白で出力されます。今実行した場合:
date & echo $!
次に、次のようなものを出力します (つまり、最後に実行されたバックグラウンド プロセスのプロセス ID):
47833