@Another_username to [email protected] • edit-29 months agoneed help restoring permissions on my downloads folderimagemessage-square49arrow-up162arrow-down18file-text
arrow-up154arrow-down1imageneed help restoring permissions on my downloads folder@Another_username to [email protected] • edit-29 months agomessage-square49file-text
I removed my permissions on my downloads folder using chmod. can anyone help restore back to default? Thanks!
minus-square@[email protected]linkfedilinkEspañol12•9 months agoIf OP did it recursively they would also need -R
minus-square@bitchkatlink1•9 months agoYou don’t necessarily want to set files to 755. So I recommend find Downloads -type d -exec chmod 755 {} ;
minus-square@somethingsomethingidklink3•9 months agoYour escape didn’t show up because of markdown. Use backticks to enclose commands find Downloads -type d -exec chmod 755 {} \;
If OP did it recursively they would also need -R
You don’t necessarily want to set files to 755. So I recommend
find Downloads -type d -exec chmod 755 {} ;
Your escape didn’t show up because of markdown. Use backticks to enclose commands
find Downloads -type d -exec chmod 755 {} \;