আরএইচইএল 6 এলএস আউটপুটে নতুন ফুল স্টপ / পিরিয়ডের অর্থ কী?


16

আমাদের কাছে ls -lঅনুমতি সম্পর্কিত তথ্যের জন্য আউটপুট আউটপুটটির সন্ধানের স্ক্রিপ্ট রয়েছে যা সম্প্রতি আরএইচইএল ভি 6 সিস্টেমে ব্যর্থ হয়েছে যা .অনুমতি প্রবেশের শেষে অতিরিক্ত হিসাবে প্রদর্শিত হবে যা সেখানে আগে ব্যবহৃত হত না:

[root@rhel6vm ~]# ls -l
total 44
-rw-------. 1 root root  1399 Aug 17 15:01 anaconda-ks.cfg
-rw-r--r--. 1 root root 25485 Aug 17 15:01 install.log
-rw-r--r--. 1 root root  7253 Aug 17 14:59 install.log.syslog
[root@rhel6vm ~]#
          ^
          | up there

ফুল স্টপ কী বোঝায়? এবং এর জায়গায় আর কি প্রদর্শিত হতে পারে?


1
We have scripts looking at the output of ls, এটি সাধারণত একটি খারাপ ধারণা । এলএস পার্স করা একটি খারাপ ধারণা। আপনি এই উদ্দেশ্যে স্ট্যাট বা অন্য কোনও সরঞ্জামের আউটপুট দেখে ভাল হবে।
জোড়দাচে

উত্তর:


19

তথ্য এলএস শো:

  Following the file mode bits is a single character that specifies
 whether an alternate access method such as an access control list
 applies to the file.  When the character following the file mode
 bits is a space, there is no alternate access method.  When it is
 a printing character, then there is such a method.

 GNU `ls' uses a `.' character to indicate a file with an SELinux
 security context, but no other alternate access method.

 A file with any other combination of alternate access methods is
 marked with a `+' character.

আহা - man ls' but didn't think of তথ্য ls ' তাকিয়েছিলেন - ধন্যবাদ
রব অক্সস্প্রিং

8

GNU ls ব্যবহার করে a . একটি SELinux সুরক্ষা প্রসঙ্গে একটি ফাইল নির্দেশ করতে অক্ষর করে, তবে অন্য কোনও বিকল্প অ্যাক্সেস পদ্ধতি নেই।

বিকল্প অ্যাক্সেস পদ্ধতির অন্য কোনও সংমিশ্রণযুক্ত একটি ফাইল একটি +অক্ষর দ্বারা চিহ্নিত করা হয়েছে ।

আমাদের সাইট ব্যবহার করে, আপনি স্বীকার করেছেন যে আপনি আমাদের কুকি নীতি এবং গোপনীয়তা নীতিটি পড়েছেন এবং বুঝতে পেরেছেন ।
Licensed under cc by-sa 3.0 with attribution required.