Skip to content

Instantly share code, notes, and snippets.

View jasonehines's full-sized avatar

Jason Hines jasonehines

View GitHub Profile
@jasonehines
jasonehines / find between dates.sh
Last active March 5, 2016 22:02
find file in current directory between two dates
find . -newermt "2016-03-02 11:00:00" ! -newermt "2016-03-02 11:45:00"
#!/bin/sh
# Alot of these configs have been taken from the various places
# on the web, most from here
# https://github.com/mathiasbynens/dotfiles/blob/master/.osx
# Set the colours you can use
black='\033[0;30m'
white='\033[0;37m'
red='\033[0;31m'