The Curious Website Designer

Search


Articles meeting the search criteria


Bash - How To Recursively CHMOD Files And Folders

Posted by: The Curious Website Designer
on Sun 10 Jan 2021

Bash - How To Recursively CHMOD Files And Folders

  find /path/to/files/* -type f -exec chmod 644 {} \; find /path/to/files/* -type d -exec..

Bash - Recursively Removing Files and Folders

Posted by: The Curious Website Designer
on Sun 10 Jan 2021

Bash - Recursively Removing Files and Folders

  To remove files recursively, the syntax to use is: rm -rf /path/to/files/*   ..

Showing 1 to 2 of 2 (1 Pages)