Navigation

    • Register
    • Login
    • Search
    • Categories
    • Recent
    1. Home
    2. ralf.papenkordt
    R
    • Profile
    • Following 0
    • Followers 0
    • Topics 0
    • Posts 1
    • Best 0
    • Groups 0

    ralf.papenkordt

    @ralf.papenkordt

    0
    Reputation
    19
    Profile views
    1
    Posts
    0
    Followers
    0
    Following
    Joined Last Online

    ralf.papenkordt Follow

    Latest posts made by ralf.papenkordt

    • RE: ClearSafariCache.sh Stuck

      I have got the same problem and found a solution: Change the script clearSafariCache.sh from

      find /private/var/folders \! -name "*SafariTechnologyPreview*" -name "*com.apple.Safari*" -exec rm -r {} \;
      

      to

      find /private/var/folders \! -name "*SafariTechnologyPreview*" -name "*com.apple.Safari*" -exec rm -r {} \; 2>/dev/null
      

      Because the original script throws "Permission denied" errors and therefore opens the file descriptor stderr, it seems that the parent process (com.apple.foundation.UserScriptService) can't close it as long as a file is open.

      posted in Cookie 5
      R
      ralf.papenkordt