c프로그램좀 도와주세요.

익명 사용자의 이미지

리눅스에서 char *com; 형으로 문자열을 저장하였습니다.
이 문자열은 명령어 입니다.
이 문자열을 사용하여
그대로 실행할수 있는 방법이 없습니까?
제발좀 알려주세요.

익명 사용자의 이미지

#include
int execl(const char *path, const char *arg0, ...,
const char *argn, char * /*NULL*/);
int execv(const char *path, char *const argv[]);
int execle (const char *path,char *const arg0[], ... ,
const char *argn, char * /*NULL*/, char *const envp[]);
int execve (const char *path, char *const argv[],
char *const envp[]);
int execlp (const char *file, const char *arg0, ...,
const char *argn, char * /*NULL*/);
int execvp (const char *file, char *const argv[]);

이렇게 여러가지 함수가 있네요. ^^
execl()함수를 사용하면 편리할 것이예요.
용도에 맞게 골라서 사용해 보세요.

자세한 사항은 man execl 해서 보세요. ^^

즐거운 프밍 하세요~

익명 사용자의 이미지

#include
int system(const char *string);

를 사용해서 간단하게 할 수 있지 않을까요??
문제를 잘못 이해한건 아닌지 ㅡㅡ;;;
허접 답변이엇슴돠!!

익명 사용자의 이미지

#include
int system(const char *string);
원래 시스템 함수가 이 형태인가요?
그렇다면 문제 끝인데..
보통 사용할때
system("ls -al");
이렇게 사용하잔아요 근데 ""데신 문자열 포인터를 지정해도 되나요?
그럼 문제 끝인데..
고맙습니다..

익명 사용자의 이미지

이것들은 사용해 봤는데.. 실행파일의 경로를 정해줘야 하잔아요..
근데 컴파일은 돼는데 버그가 심해서..
답변 고맙습니다..
리눅스 프로그래밍 세칸에디션 내용이네요... 저두 이책 무지 좋아하는
데..

다른방법 아시면... 갈쳐주세요..

정말 고맙습니다.

익명 사용자의 이미지

네 맞아요,

system()함수와 execl 함수의 차잇점은..

system()함수는 인자값마저 모조리 한개의 파라미터로 넘겨주는 것입니다,

execl()함수는 요앞에 썼듯이 인자값이 여러개죠?
execl("화일이름", "옵션1", "옵션2"....)
이렇게 사용 합니다.

man -s 2 execl

위와 같은 명령을 넣고 싶다고 해보죠.
그렇다면은 system()함수는..

system("man -s 2 execl");

이라고 하면 되겠죠?

하지만 execl() 함수를 사용한다면,

execl("man", "-s", "2", "execl");

이렇게 해주면 되는 것입니다. ^^

수고하세요.

익명 사용자의 이미지

"...." 가 문자열 포인터 입니다.

c 관련 책에서 포인터 부분을 더 보세요.

댓글 달기

Filtered HTML

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

BBCode

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param>
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

Textile

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • You can use Textile markup to format text.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Markdown

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • Quick Tips:
    • Two or more spaces at a line's end = Line break
    • Double returns = Paragraph
    • *Single asterisks* or _single underscores_ = Emphasis
    • **Double** or __double__ = Strong
    • This is [a link](http://the.link.example.com "The optional title text")
    For complete details on the Markdown syntax, see the Markdown documentation and Markdown Extra documentation for tables, footnotes, and more.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Plain text

  • HTML 태그를 사용할 수 없습니다.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 줄과 단락은 자동으로 분리됩니다.
댓글 첨부 파일
이 댓글에 이미지나 파일을 업로드 합니다.
파일 크기는 8 MB보다 작아야 합니다.
허용할 파일 형식: txt pdf doc xls gif jpg jpeg mp3 png rar zip.
CAPTCHA
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.