Created
April 23, 2019 06:37
-
-
Save dominykas/2e787208a1c8a902c5ac44232b9ac7d7 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
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