Skip to content

Instantly share code, notes, and snippets.

@dominykas
Created April 23, 2019 06:37
Show Gist options
  • Save dominykas/2e787208a1c8a902c5ac44232b9ac7d7 to your computer and use it in GitHub Desktop.
Save dominykas/2e787208a1c8a902c5ac44232b9ac7d7 to your computer and use it in GitHub Desktop.
node_modules_age() {
FOLDER="node_modules"
if [[ ! -d ${FOLDER} ]]; then
exit
fi
MTIME=$(stat -t %s -f %B -- ${FOLDER})
echo " [$((($(date +%s) - ${MTIME})/86400))]"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment