Medium
We want to give the following permissions to the hello.txt file:
- Read, write and execute for the owner
- Write and execute for group users
- Reading for other users
What line should I add to my script?
Author: titouan lecampStatus: PublishedQuestion passed 77 times
Edit
1
Community EvaluationsNo one has reviewed this question yet, be the first!
1
How to count the number of lines in a file in Bash1
Find all rows containing patterns 1 and 2 in a file using Bash2
Display lines containing 'Error' in all .txt files1
Find the default shell for a user in Bash1
What does the shell prompt `user@user:~$` mean?1
What does 2>&1 means in the script below?
```
compile "$i" > "${i%.txt}".ass 2>&1
```1
Which line deletes all files in a directory? (visible and hidden files)