null
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FORWARD_DEST="[email protected]" | |
function forwardAndLabelStarredEmails() { | |
var laterLabel = GmailApp.getUserLabelByName("@later"); | |
if (!laterLabel) { | |
laterLabel = GmailApp.createLabel("@later"); | |
} | |
var threads = GmailApp.search('is:starred'); | |
var emailParts = Session.getActiveUser().getEmail().split('@')[1].split('.'); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo kill $(ps -ef | grep "\[healthd\]" | awk '{ print $2 }') |