리눅스 c에서 if문을 통과하지 못하는데 왜이러는 걸까요?

익명 사용자의 이미지

#include
#include
#include

int main(int argc, char *argv[]){
int fd1, fd2, len;
long size;
char buf[1024];

if (argc == 1) /*1*/
{
fd1 = 0;
while(size = read(fd1, buf, 1024))
{
write(1, buf, size);
}
}
else
{
if(argv[1] == ">") /*2*/
{
fd1 = open(argv[2], O_RDONLY, 0666);
while(size = read(fd1, buf, 1024))
{
write(1, buf, size);
}
close(fd1);
}
else
{
if(argv[2] == ">") /*4*/
{
fd1 = open(argv[1], O_RDONLY);
fd2 = open(argv[3], O_CREAT | O_WRONLY, 0666);
do {
len = read(fd1, buf, 1024);
write(fd2, buf, len);
}while(len);
close(fd1);
close(fd2);
}
else if(argv[2] == ">>") /*5*/
{

}
else /*3*/
{
fd1 = open(argv[1], O_RDONLY);
while(size = read(fd1, buf, 1024))
{
write(1, buf, size);
}
}
}
}
return (0);
}

지금 리눅스에 cat을 구현해보고 있는데 일단 에러문출력 없이 해보고 있습니다.

지금 일반 "./mycat" 과 "./mycat mycat.c" 는 문제 없이 잘 실행이 되고 있는데

여기서 이제 "./mycat ">" out.c" 또는 "./mycat out.c ">" out1.c" 를 넣어 실행할 경우 문제가 발생합니다.
(">" 문자 입력에 이렇게 넣는 이유는 큰 따음표 없이 입력할 경우 제가 실행하는 프로세스가 실행 되는
것이 아닌 기본 쉘 프로그램에 있는 명령문이 돌아가면서 제가 실행한 프로세스가 아닌 쉘 프로세스에서
처리를 해버리기 때문에 > 가 아닌 ">"를 썼습니다.)

if문에 argv[1] == ">" 를 통과하지를 않습니다. 다른 argv[2] == ">" 와 argv[2] == ">>" 마찬가지 이구요

다른 어떤 방식을 쓰더라고 (argv 값을 문자형 변수로 다시 만들어 비교도 해봤습니다.) if문을 통과를 하지 못하네요..

혹시 제가 한 코딩에 무슨 문제가 있는걸까요?

라스코니의 이미지

if(argv[2] == ">") /*4*/ ==> if(strcmp(argv[2], "">"") == 0) /*4*/
else if(argv[2] == ">>") /*5*/ ==> else if(strcmp(argv[2], "">>"") ==0) /*5*/

테스트는 안해봤습니다만 ">"를 인수로 주면 인수 pool에는 "">""로 들어가 있을 것 같네요.

익명 사용자의 이미지

if(strcmp(argv[2], "">"") == 0) /*4*/ 여기 문장에서 "">""가 오류가 나길래 ">" 이렇게 변경해서 실행하니

if문 드디어 통과해서 제대로 실행 되네요.. 감사합니다 ㅠㅠㅠㅠㅠㅠㅠㅠ

댓글 달기

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
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.