-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patharchive
executable file
·119 lines (114 loc) · 3.67 KB
/
archive
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
#!/bin/bash
# This script's framework was created using makescript
# version v0.14.7, dated 2018-11-12
# Makescript and its accompanying scripts are copyrighted
# by Aetesaki (c) 2018
#
# archive (c) 2018 aetesaki
#
# ##################################################
# HISTORY:
# ##################################################
#
# * 2018-11-17 - v0.0.0 - First Creation
# * 2018-11-17 - v1.0.0 - First release
# * 2018-11-17 - v1.1.0 - Added empty check
# * 2018-11-17 - v1.2.0 - Added date format check
# * 2018-11-17 - v1.3.0 - Added check for future date
# * 2018-11-17 - v1.3.1 - added help note on date format
#
# ##################################################
# Initializing constants and variables
# ##################################################
# Setting constants
version="v1.3.1" # Sets version variable
lastEdited="2018-11-17" # Sets last edited variable" $scriptNamePath
# Declaring variables
# Declare all variables to be used in the script
declare lastModifiedDate
declare cutoffDate=$1
declare destination=$2
# ##################################################
# short help function
# ##################################################
shorthelp() {
# Edit as required
echo "Usage: archive date destination
archive --help
archive --version"
}
# ##################################################
# -- help
# ##################################################
if [ "$1" == "--help" ]; then
shorthelp
# Write options and explanations
echo "
--help Displays this text and exit.
--version Displays the version of the script and exit."
# Write information on arguments afterwards
echo "
This script will move all files in current directory, which hasn't been
modified since before date to destination.
Destination must be a valid directory.
NOTE: Date must be in international format: YYYY-MM-DD."
# Write examples as required
echo "
archive 2016-1-1 FolderB
will move all files older than 1 January 2016 to FolderB."
exit 0
fi
# ##################################################
# -- version
# ##################################################
if [ "$1" == "--version" ]; then
echo "archive ${version}, dated ${lastEdited}
(c) 2018 aetesaki"
exit 0
fi
# ##################################################
# no arguments gives short help
# ##################################################
if [ "$#" == "0" ]; then
shorthelp
exit 1
fi
# ##################################################
# Main section
# ##################################################
# if destination is not a directory
if [ ! -d $destination ]; then
# exit with error
echo "ERROR: $destination is not a directory."
exit 1
fi
# get year, month and date from cutoffDate
y=$( echo $cutofDate | cut -d"-" -f1 )
m=$( echo $cutofDate | cut -d"-" -f2 )
d=$( echo $cutofDate | cut -d"-" -f3 )
# If cutoffDate is not a date
if [ ! date -d "$y-$m-$d" &> /dev/null ]; then
# exit with error
echo "ERROR: $cutoffDate is not a date."
exit 1
fi
# if cutoffDate is in the future
if [[ "$cutoffDate" > $( date -I ) ]]; then
# exit with error
echo "ERROR: $cutoffDate is a future date."
exit 1
fi
# For each file in directiory
for file in * ; do
# if file is not a directory
if [ ! -d $file ]; then
# get the last modify date
lastModifiedDate=$( stat $file | grep Modify | cut -d" " -f2 )
# if lastModifiedDate older than cutoffDate
if [[ "$lastModifiedDate" < "$cutoffDate" ]]; then
# move file to destination
#echo "mv $file $destination" #DEBUG
mv $file $destination
fi
fi
done