Snippets

Joerg Hochwald M87g: Untitled snippet

Created by Joerg Hochwald last modified
#!/bin/bash

IFS=$'\n'

# Kill all running instances of OneDrive Business
killall -9 "OneDrive for Business" 2>/dev/null
killall -9 "OneDrive for Business" 2>/dev/null

# Find all stale caches
for i in `find ~/Library -name OfficeFileCache 2>/dev/null`;
do echo $i;
    rm -Rf "$i";
done

# Restart OneDrive Business
/Applications/OneDrive\ for\ Business.app/Contents/MacOS/OneDrive\ for\ Business &

# Make a clean exit
exit 0

Comments (0)

HTTPS SSH

You can clone a snippet to your computer for local editing. Learn more.