ablog

不器用で落着きのない技術者のメモ

BourneShell

Bourne Shell で今自分がいる場所の絶対パスを取得する

#!/bin/sh BASE_DIR=`cd \`dirname $0\`;pwd` echo $BASE_DIR [参考] http://d.hatena.ne.jp/ymorimoto/20090305/p1

Bourne Shell の特殊シェル変数 $!

Bourne Shell の特殊シェル変数 $! はバックグラウンドで実行された直前のプロセスのプロセス番号を保持している。 $ man sh ... ! The process number of the last background command invoked. ... [参考] http://flex.ee.uec.ac.jp/texi/sh/node30.html#S…