Linux is a powerful operating system, and its command line is the key to unlocking its full potential. Here's your Linux command cheat sheet with e...
For further actions, you may consider blocking this person and/or reporting abuse
Nice work, dude!
Maybe, you can add some like:
One of the shortcuts that I like is:
Sure bro! I will modify thisβ€οΈ
Good job! Here my suggestions:
Changing directory ownership recursively:
Adding
executable
flag to file:I have added your writing also. Checkout! Thanks for contributing! Do follow my project on GitHub: github.com/Snigdha-OS
Thanks for sharing
Thanks for appreciating ! Do follow my project on GitHub: github.com/Snigdha-OS β€οΈ
Nice post!
Thanks for appreciating ! Do follow my project on GitHub: github.com/Snigdha-OS
what is the difference between chmod +x /path/to/script.sh and chmod u+x /path/to/script.sh ?
chmod +x /path/to/script.sh
is used when you want to make the script executable for all users e.g groups and it is equivalent toa+x
-a stands for all. on the other sideu+x
is used when you want to give permission for owner only. in details you can say likechmod +x
=rwxr-xr-x
andchmod u+x
=rwxr--r--
. Thank You for the question.@schelp I have added your writing also. Checkout! Thanks for contributing! Do follow my project on GitHub: github.com/Snigdha-OS
Nice
Thanks for appreciating ! Do follow my project on GitHub: github.com/Snigdha-OS