Created
January 4, 2011 20:23
-
-
Save velenux/765352 to your computer and use it in GitHub Desktop.
how many files today?
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
#!/bin/bash | |
FILES=$(find -name '*.ref' -ctime -1 -print) | |
N_FILES=$(find -name '*.ref' -ctime -1 -print|wc -l) | |
TIMESTAMP=$(stat -c %y $FILES | cut -b1-16 | sort | tail -n1) | |
DATE=${TIMESTAMP:0:10} | |
TIME=${TIMESTAMP:11:16} | |
echo $DATE $N_FILES files last $TIME |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment