linux-c-programming.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Lawrence Bowie <thesource@ldb-jab.org>
To: ework0 <ework0@gmail.com>
Cc: linux-c-programming@vger.kernel.org
Subject: Re: exec question
Date: Fri, 04 Nov 2005 12:09:21 -0500	[thread overview]
Message-ID: <436B95C1.5050006@ldb-jab.org> (raw)
In-Reply-To: <436AECF0.5090109@gmail.com>

I believe this is what you want, right?

In the future, you will get a much more expedient response by posting to
the newsgroup, comp.unix.programmer. :) Just an FYI .. not trying to
scare you away.



#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>

int
main(int argc, char *argv[])
{
	/* In using execlp you better be sure PATH is set properly and
	 * also in ceratin situations it might be a security risk.
	 */
	/* Uncomment below if you want an example with arguments */
        //if (execlp("cat", "cat", "/etc/hosts", (char *)0) < 0)
        if (execlp("df", "df", (char *)NULL) < 0)
                fprintf(stderr, "\nCannot exec!\n");

        exit(0);
}

ework0 wrote:
> Hello,
> 
> How can I execute a program (without the full path, just the name) using
> exec's system calls within a C program? ej: buf[]={"uname",NULL};
> 
> Thanks for a brief example,
> 
> ework0
> 
> 
> -
> To unsubscribe from this list: send the line "unsubscribe
> linux-c-programming" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
> 

      parent reply	other threads:[~2005-11-04 17:09 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2005-11-04  5:09 exec question ework0
     [not found] ` <1131083883.10404.3.camel@mokona>
     [not found]   ` <436AF357.5050109@gmail.com>
2005-11-04 16:22     ` davidgn
2005-11-04 17:09 ` Lawrence Bowie [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=436B95C1.5050006@ldb-jab.org \
    --to=thesource@ldb-jab.org \
    --cc=ework0@gmail.com \
    --cc=linux-c-programming@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).