I removed my permissions on my downloads folder using chmod.

can anyone help restore back to default?

Thanks!

  • @bitchkat
    link
    19 months ago

    You don’t necessarily want to set files to 755. So I recommend

    find Downloads -type d -exec chmod 755 {} ;

    • @somethingsomethingidk
      link
      39 months ago

      Your escape didn’t show up because of markdown. Use backticks to enclose commands

      find Downloads -type d -exec chmod 755 {} \;