私は自分自身への演習として単純なシェルを実行しようとしています。PATH で実行可能ファイルを検索し、実行可能ファイルへのフル パスを含む文字列へのポインターを返す関数を作成しています。これが私がこれまでに持っているものです。
/*bunch of includes here*/
/*
* Find executable in path, return NULL
* if can't find.
*/
char *find_executable(char *command)
{
const char *PATH = getenv("PATH");
DIR *dp;
/* get each pathname, and try to find executable in there. */
}
int main(int argc,char *argv[])
{ /* nothing intersting here ...*/
}
パスの各部分をどのように分離し、これらの部分を for ループで処理する必要があるのか 疑問に思っていました。