쉘 스크립트에서 질문드립니다...

seonjin000의 이미지

고민고민 해보다 도저히 모르겠어서 -.-;;;
이렇게 글을 올립니다.
특정 디렉토리를 아규먼트로 주면 그 디렉토리 밑에 있는 파일을 다 지우는
filefind라는 프로그램을 만들려 합니다.
완성했긴 했는데, 와일드 카드를 먹지 않는 것이 문제 입니다.
예를 들어
filefind aa*라고 하면, aa로 시작되는 디렉토리의 디렉토리를 다 지우게 하고 싶은데,
실제로 현재 디렉토리 밑에 aa*에 관련된 파일이 4개 있다면
filefind aaa aab aac aad
이런식으로 인식한다는 것입니다.
(프로그램 안에서 아규먼트 개수를 뜻하는 $#의 개수를 echo해 보면 4를 리턴합니다. $1은 aaa, $2는 aab, $3는 aac, $4는 aad겠죠.)
그래서 아규먼트 갯수만큼 while을 돌려서 파일이름을 find하여 지워주려하는데,
i=1
while [ "$i" -le "$#" ]
do
find ./ -name "$i" -print |xargs rm -r
i=$(($i+1))
done
하면, find부분에서 $i값은 변수값이므로
1,2,3,4값을 find하게 됩니다.
$1값인 aaa, $2값인 bbb, $3값인 ccc, $4값인 ddd를 지워줘야하는데 말입니다.
아주 간단한 방법이 있을 듯한데, 도통 감이 안잡히네요.
$i를 변수값이 아닌 아규먼트 값 자체로 인식하게 하기 위해서 어떻게 해줘야 하나요?
아시는 분 대답 해주시면 감사하겠습니다..

morris의 이미지

http://doc.kldp.org/HOWTO/html/Adv-Bash-Scr-HOWTO/othertypesv.html

여기 가셔서 밑에 쯤에

예 5-7. shift 쓰기

부분을 살펴보세요

ez8의 이미지

#!/bin/sh
for filename in $*
do
        find ./ -name ${filename} -print | xargs rm -r
done

해보다가 $i가 치환이 잘 안되길래 다시 만들어 봤습니다.

ps. 저도 $i를 변수값이 아닌 아규먼트 값 자체로 인식하는 방법 좀 알려주세요.

alfalf의 이미지

실행할때 아래와 같이 따옴표를 사용하게 하는것이 좋을것 같네요.

filefind aa* -> filefind "aa*"

댓글 달기

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