All the three operations i.e read, write and execute can be performed on the file by file owner, group owner and others.

🎲 Try a Random Question  |  Total Questions in Quiz: 47  |  🧠 Study this quiz with Flashcards
This question is part of a full practice quiz:
Unix Basics Practice Test: Basic File Attributes — practice the complete quiz, review flashcards, or try a random question.

Quiz questions on listing file and directory attributes, file ownership and permissions. File attributes can be viewed using the ls -l command. For example, the following output shows the attributes for a file named myfile.txt: -rw-r--r-- 1 user group 1024 Mar 8 12:00 myfile.txt The first character in the output indicates the file type. In this case, the - character indicates that the file is a regular file. The next three characters indicate the file permissions for the owner, group, and other users. In this case, the rw- permission indicates that the owner has read and write permission,... Show more

All the three operations i.e read, write and execute can be performed on the file by file owner, group owner and others.