Created
November 18, 2019 16:55
-
-
Save hugows/e26a6a5d6d45afd69e9b531e1a817c8a to your computer and use it in GitHub Desktop.
This file contains hidden or 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 | |
# Script should be run daily to move Downloads/ files to an archived folder. | |
HOME="/home/hugo" | |
YESTERDAY=$(date -d "yesterday 13:00" '+%Y-%m-%d') | |
mkdir -p $HOME/ArchivedDownloads/$YESTERDAY | |
mv $HOME/Downloads/* $HOME/ArchivedDownloads/$YESTERDAY |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment