getopt 함수 질문 드립니다.

alsrud의 이미지

리눅스 상에서 ls -a,l,R,S,t,r를 구현하는 중 문제가 발생했습니다.
getopt함수를 써서 옵션을 가져오려는 의도인데
명령인자에 옵션이 들어가는 경우 모든 옵션이 동시에 적용되어 출력됩니다.
예를 들자면)
저의 의도: ls -a
출력화면 ls -alRStr(여기서 t는 S로인해 적용되자 않고 alRSr로 출력됨)

일단 옵션값은 이렇게 지정했고,

15 //옵션에대한 값을 지정
16 #define FLAG_ALL 0x01
17 #define FLAG_LONG 0x02
18 #define FLAG_RECUR 0x04
19 #define FLAG_SIZE 0x08
20 #define FLAG_TIME 0x10
21 #define FLAG_REVERSE 0x20

메인 함수 소스입니다.

65 int main(int argc, char* argv[]) {
66 int i, j;
67 int opt = 0; //옵션을 저장하는 변수
68 char path[PATH_LENGTH]="./"; // 실행시 path옵션을 안주었을때의 디폴트 경로값
69
70 for(i=1; i < argc; i++) {
71 for(j=1; argv[i][j] != '\0'; j++) {
72 if(argv[i][0] != '-') { //옵션이 아니고 path정보일 때
73 strncpy(path, argv[i], PATH_LENGTH);
74 break;
75 }
76 while((opt = getopt(argc, argv, "alRStr")) != -1) {
77 switch(argv[i][j]) {
78 case 'a':
79 opt |= FLAG_ALL;
80 break;
81 case 'l':
82 opt |= FLAG_LONG;
83 break;
84 case 'R':
85 opt |= FLAG_RECUR;
86 break;
87 case 'S':
88 opt |= FLAG_SIZE;
89 break;
90 case 't':
91 opt |= FLAG_TIME;
92 break;
93 case 'r':
94 opt |= FLAG_REVERSE;
95 break;
96 }
97
98 }
99 }
100 }
101
102
103 if(path[PATH_LENGTH -1] != '/') {
104 //if(path[strlein(path)-1] != '/')
105 strcat(path, "/");
106 //sprintf(path+strlen(path), "/");
107 }
108
109 printf("%c[1;31m", 27); //색변경
110 printf("\ndirectory path:");
111 seek_dir(path, opt); //디렉토리를 순회함
112
113 printf("%c[0m\n", 27); //색변경
114 return 0;
115 }

문제가 무엇일까요 ㅜㅜ?

bbaijang의 이미지

opt값 확인해보세요
처음에 0으로 초기화 했다가 getopt 값도 넣었다가... 이 때 비트 값이 변경되었겠죠?
추가로 ls -a일 경우에 -는 case문 무시 argv[0]1]에서 case a문 도니 그 값에 != FLAG_ALL 하는데...
이때 비트 값 한번 확인해보세요.

제 생각에는 flag랑 opt 옵션 얻어오는거랑은 분리하는게 좋을 듯 싶습니다.
while(opt=getopt(~~~
{
switch opt
case 'a':
~~~ 어쩌구 저쩌구
}

switch 문 지나서 opt 값 확인하면 의도하신 거랑은 많이 달라질것 같네요.

alsrud의 이미지

flag랑 opt 옵션 얻어오는거랑은 분리하니
아주 잘 해결이 되었어요 ^^
감사합니다 ㅎㅎ

bushi의 이미지

[schoi0@sel-schoi0-d2 devprofile]$ cat gopt.c 
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
 
int main(int argc, char **argv)
{
	int c;
	while ((c = getopt(argc, argv, "alRStr")) >= 0) {
		switch (c) {
		case 'a': break;
		case 'l': break;
		case 'R': break;
		case 'S': break;
		case 't': break;
		case 'r': break;
		default:
			fprintf(stderr, "unknown option\n");
			exit(EXIT_FAILURE);
		}
	}
 
	printf("number of extra arguments: %d\n", argc - optind);
 
	char **extra = argv + optind;
	while (*extra)
		printf("%s\n", *extra++);
 
	return 0;
}
[schoi0@sel-schoi0-d2 devprofile]$ 
[schoi0@sel-schoi0-d2 devprofile]$ gcc -o gopt gopt.c -Wall
[schoi0@sel-schoi0-d2 devprofile]$ 
[schoi0@sel-schoi0-d2 devprofile]$ ./gopt hello -la -R -Str world
number of extra arguments: 2
hello
world
[schoi0@sel-schoi0-d2 devprofile]$

댓글 달기

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