#! /usr/bin/env bash

# Save file $1 in a back file YYYY-MM-DD-$1 according to its date.

if [[ -f $1 ]]; then cp $1 `ls --full-time $1 | cut -d' ' -f6`-$1; fi



