File names are getting appended with * after executing chmod -R comman

  • Thread starter Thread starter schitimala
  • Start date Start date
S

schitimala

Hi All,

Could you please help me to know the possible chances on the below simple issue.

created directory (mkdir test)
created 10 files in side test directory (cd test; touch file{1..10})
chmod -R 777 test
when i am using ls -l, * is not getting appended with file names but when we use ll its appending * as below.

chmod -R 777 test

total 8
drwxrwxrwx 2 root root 4096 Jul 4 17:48 ./
drwx------ 12 root root 4096 Jul 4 17:48 ../
-rwxrwxrwx 1 root root 0 Jul 4 17:48 file1*
-rwxrwxrwx 1 root root 0 Jul 4 17:48 file10*
-rwxrwxrwx 1 root root 0 Jul 4 17:48 file2*
-rwxrwxrwx 1 root root 0 Jul 4 17:48 file3*
-rwxrwxrwx 1 root root 0 Jul 4 17:48 file4*
-rwxrwxrwx 1 root root 0 Jul 4 17:48 file5*
-rwxrwxrwx 1 root root 0 Jul 4 17:48 file6*
-rwxrwxrwx 1 root root 0 Jul 4 17:48 file7*
-rwxrwxrwx 1 root root 0 Jul 4 17:48 file8*
-rwxrwxrwx 1 root root 0 Jul 4 17:48 file9*

Continue reading...
 
Back
Top