Jump to content

HoraceKSmith

New Members
  • Posts

    2
  • Joined

  • Last visited

HoraceKSmith's Achievements

Combat Commando

Combat Commando (1/9)

0

Reputation

  1. Also to delete .DS_Store files regularly, type the command: sudo crontab -e Then enter your password. Enter command again: 15 1 * * * root find / -name ".DS_Store" -depth -exec rm {} \; Follow this format: <Minute> <Hour> <DayOfMonth> <Month> <DayOfWeek> <User Command> After that, press Enter and then Shift+Z+Z.
  2. For Mac users, deleting .DS_Store files would save a lot of space for Mac. Use Terminal to help with that. Enter this command will work: sudo find / -name ".DS_Store" -depth -exec rm {} \
×
×
  • Create New...