Write short notes on File Management command for Linux (any 4).
Answers
Answered by
2
Unix / Linux - File Management. All data in Unix is organized into files. All files are organized into directories.
These directories are organized into a tree-like structure called the filesystem. When you work with Unix, one way or another, you spend most of your time working with files.
Answered by
0
1)Use chmod -R 755 /opt/lampp/htdocs if you want to change permissions of all files and directories at once.
2)Use find /opt/lampp/htdocs -type d -exec chmod 755 {} \; if the number of files you are using is very large. ...
3)Use chmod 755 $(find /path/to/base/dir -type d) otherwise.
4)Better to use the first one in any situation.....
Similar questions
Social Sciences,
6 months ago
English,
6 months ago
Computer Science,
11 months ago
Computer Science,
11 months ago
English,
1 year ago
Math,
1 year ago