कैसे यूनिक्स पर गलत अनुमति के साथ फ़ाइलों को खोजने के लिए?


14

मैं किसी निर्देशिका या निर्देशिका को खोजने और उन सभी फ़ाइलों को सूचीबद्ध करने का तरीका खोज रहा हूं, जिनके पास सार्वजनिक निर्देशिका के लिए गलत अनुमतियां हैं।

जवाबों:


15

आपके प्रश्न को और अधिक स्पष्ट रूप से, जासूसी कहा जा सकता है। सार्वजनिक निर्देशिका के लिए "गलत अनुमतियाँ" से आपका क्या अभिप्राय है?

यह मानते हुए कि आप चाहते हैं कि निर्देशिकाएं 755 और साधारण फाइलें 644 हो, मैं इसे इस तरह से करूंगा:

$ find \! -perm 644 -type f -o \! -perm 755 -type d

-ओ क्या करता है? इसका मतलब कुछ ऐसा है या?


3
इस विशेष मामले में RTFM एक बहुत ही उपयोगी उत्तर नहीं है, जिसमें कई स्तर की सेटिंग्स पाई जाती हैं; यह विशेष रूप से भ्रमित करने की कोशिश कर रहा है कि -o -type या -perm के साथ जुड़ा हुआ है।
लाइटहार्ट

मैं खुद को असहमत होने की अनुमति देता हूं। सवाल था "-ओ-डू क्या करता है? क्या इसका मतलब कुछ ऐसा है?" यह पूरी तरह से आदमी पृष्ठ द्वारा उत्तर दिया गया है: "expr1 -o expr2 या; expr2 का मूल्यांकन नहीं किया जाता है अगर expr1 सत्य है।"
0x89

Btw। पूर्वता के बारे में आपके प्रश्न को मैन पेज के एक ही पैराग्राफ में संभाला गया है: "कम होने की स्थिति के क्रम में सूचीबद्ध OPERATORS" और "एक पंक्ति में दो अभिव्यक्तियों को एक निहित 'और' के साथ शामिल किया जाना है; expr2 का मूल्यांकन नहीं किया जाता है यदि expr1 है असत्य।")।
0x89

5

इसने मेरे लिए काम किया

find .  \! -perm +755

\!झंडा साधन नहीं और -permविकल्प का उपयोग करता है सामान्य chmod विकल्प


3

सब कुछ इस बात पर निर्भर करता है कि आप 'गलत अनुमति' पर क्या विचार करते हैं। आदमी इस तरह से परिभाषित करने में आपकी मदद करता है कि आप किस तरह से अनुमति के साथ फाइल / डायर देख सकते हैं:

   -perm -mode
          All of the permission bits mode are set for the file.  Symbolic modes are
          accepted in this form, and this is usually the way in which would want to
          use them.  You must specify ‘u’, ‘g’ or ‘o’ if you use a  symbolic  mode.
          See the EXAMPLES section for some illustrative examples.

   -perm /mode
          Any of the permission bits mode are set for the file.  Symbolic modes are
          accepted in this form.  You must specify ‘u’, ‘g’ or ‘o’  if  you  use  a
          symbolic  mode.  See the EXAMPLES section for some illustrative examples.
          If no permission bits in mode are set, this test matches  any  file  (the
          idea here is to be consistent with the behaviour of -perm -000).

   -perm +mode
          Deprecated,  old  way  of  searching for files with any of the permission
          bits in mode set.  You should use -perm /mode instead. Trying to use  the
          ‘+’  syntax with symbolic modes will yield surprising results.  For exam‐
          ple, ‘+u+x’ is a valid symbolic mode (equivalent to +u,+x, i.e. 0111) and
          will  therefore  not be evaluated as -perm +mode but instead as the exact
          mode specifier -perm mode and so it matches files with exact  permissions
          0111  instead of files with any execute bit set.  If you found this para‐
          graph confusing, you’re not alone - just use -perm /mode.  This  form  of
          the -perm test is deprecated because the POSIX specification requires the
          interpretation of a leading ‘+’ as being part of a symbolic mode, and  so
          we switched to using ‘/’ instead.

हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.