실행파일만 찾아서 지우는 방법?

ssk의 이미지

특정 디렉토리 아래에 있는 실행파일들만 찾아서 지우는 방법을 알고 싶습니다.

문제는, 실행파일들 중에서도 쉘스크립트나 펄스크립트 같은 것들은 지우지 말고 그냥 바이너리 실행파일만 지우고 싶거든요?

find 명령어의 옵션을 보니 퍼미션이나 atime, ctime등에 대한 검색조건은 있는데 파일이 쉘스크립트냐 펄스크립트냐 일반 바이너리 파일이냐 하는 것에 대한 검색조건은 없더군요. file명령어와 find를 어찌 조합하면 될것 같기도 한데 방법을 모르겠네요. 하나하나 찾아내기에는 시간이 너무 많이 걸리는 일이라서....

부탁드립니다....

darkleo의 이미지

find . -perm 755 -exec file {} \; | grep executable | awk -F ' ' '{printf $1."\n"}';

이런 식으로 하니깐 퍼미션이 755인것에 대해서 쉘이 아닌 실행파일들 목록을 잡아주는데 약간 수정을 해서 해 보시면 원하시는 파일들을 구할 수 있지 않을까 싶네요.

제 경우에는 awk로 rm -rf filename 형식으로 파일을 만들어 한꺼번에 어떤 일을 적용 시키곤 했습니다.

impactbar의 이미지

rm -rf `file *|grep ELF|awk -F: '{print $1}'`

권순선의 이미지

find 옵션중에 user에게 rwx로 permission이 설정된 놈을 찾으려면 앞에 -를 붙여주면 됩니다. 그럼 group/other의 permission은 상관없이 모두 찾아줍니다. 그리고 끝에 ":"가 붙기 때문에 떼어주어야 하네요. :o

Quote:
find . -perm -700 -type f | xargs file | grep "ELF 32-bit LSB executable" | awk -F ' ' '{printf $1."\n"}' | xargs rm `sed -e "s/:$//g"`
무한포옹의 이미지

말그대로 +700 이어야... 되지 싶은데요.

'ELF' 이나 'executable' 등의 간단한 표현식은 오류가 날 확률도 있으니

정확하게 실행 바이너리 를 표현할 만한 걸로 (위에 나와있듯이) 해야겠죠?

-------------------------------
== warning 대부분 틀린 얘기입니다 warning ===

댓글 달기

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