Skip to content

Instantly share code, notes, and snippets.

@qwertos
Created April 27, 2014 13:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save qwertos/9609db1a8c9a10148beb to your computer and use it in GitHub Desktop.
Save qwertos/9609db1a8c9a10148beb to your computer and use it in GitHub Desktop.
Script for taking the file modified time from stat and creating a timeline for Gourse to process.
#!/bin/bash
find * | while read file ; do
ts=`stat -c %Y "$file"`
echo "$ts|unknown|M|$file"
done | sort -n
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment