Last active
January 3, 2016 23:49
-
-
Save svdmitrij/8538026 to your computer and use it in GitHub Desktop.
Count files with date (crooked way). Just example for seq.
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 | |
for i in $(seq 1 31); do | |
echo $i = `ls -la|grep -c "Jan $i 2013"`; | |
done; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment