-
Notifications
You must be signed in to change notification settings - Fork 0
/
trash.sh
executable file
·165 lines (154 loc) · 4.48 KB
/
trash.sh
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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
#!/bin/bash
# VARIABLES
VERSION="0.3"
TO_DELETE=()
RECURSIVE=false
FOREVER=false
VERBOSE=false
# FUNCTIONS
function show_help()
{
echo -e ""
echo -e "This is custom script used to avoid deleting files forever"
echo -e "instead files will be moved to $HOME/.Trash folder"
echo -e ""
echo -e "usage: trash [OPTION]...FILE..."
echo -e "Move FILE(s) to $HOME/.Trash folder"
echo -e ""
echo -e "Options:"
echo -e " -h, --help \t\tdisplay this help text and exit."
echo -e " --version \t\toutput version information and exit."
echo -e " -r, -R, --recursive,\tmove the directories and their content to the Trash folder."
echo -e " -f, --forever,\tremove the directories and their content to the Trash folder."
echo -e " \tuse this to delete files or empty trash it calls the /bin/rm"
echo -e ""
echo -e ""
echo -e "Script source 'https://github.com/lalo/rm'"
echo -e ""
echo -e "Based on script 'https://github.com/artmees/rm'"
echo -e "github page 'https://artmees.github.io/rm'"
echo -e ""
echo -e "Install :"
echo -e " sudo cp trash.sh /usr/local/bin/trash"
echo -e "Uninstall :"
echo -e " sudo rm /usr/local/bin/trash"
echo -e ""
echo -e "remember you need to restart the terminal for this to work"
echo -e "or you can use source ~/.bashrc or source ~/.bash_profile"
echo -e ""
exit 0
}
function check_flags()
{
# check the flags user used
if [ $# -le 0 ];then
show_help
fi
while test $# -gt 0; do
case "$1" in
-h|--help)
show_help
;;
-r|-R|--recursive)
shift
RECURSIVE=true
;;
-f|--forever)
shift
FOREVER=true
;;
--version)
echo -e "$VERSION"
exit 0
;;
-v|--verbose)
shift
VERBOSE=true
;;
-a|-b|-c|-d|-e|-g|-h|-i|-j|-k|-l|-m|-n|-o|-p|-q|-s|-t|-u|-w|-x|-y|-z|-A|-B|-C|-D|-E|-F|-G|-H|-I|-J|-K|-L|-M|-N|-O|-P|-Q|-S|-T|-U|-V|-W|-X|-Y|-Z)
echo -e ""
echo -e "Invalid Argument"
show_help
;;
*)
get_to_delete $1
shift
;;
esac
done
}
# Helper method to populate the TO_DELETE array
function get_to_delete()
{
while test $# -gt 0; do
TO_DELETE=("${TO_DELETE[@]}" $1)
shift
done
}
function check_trash_directory()
{
# check that global system trash exists
# if not create it
if [ ! -d ~/.Trash/ ];then
mkdir ~/.Trash
fi
# check the files and flags passed
check_flags $@
if $FOREVER ;then
# use the common system rm -r passing the same arguments
if $VERBOSE ;then
echo -e "`/bin/rm -r -v ${TO_DELETE[@]}`"
else
/bin/rm -r ${TO_DELETE[@]}
fi
else
move_to_trash
fi
exit 0
}
# Move the deleted files to the trash
# show output if -V option was specified
function move_to_trash()
{
for i in "${TO_DELETE[@]}";do
FILENAME=$i
FILENAME+="_"
FILENAME+=$(date +"%H_%M_%S")
if [ -d $i ] && $RECURSIVE ;then
if $VERBOSE ;then
echo -e "`mv -v $i ~/.Trash/$FILENAME`"
else
mv $i ~/.Trash/$FILENAME
fi
elif [ -d $i ] ;then
echo -e "$i is a directory please use --recursive to remove directories and their content"
elif [ -f $i ] ;then
if $VERBOSE ;then
echo -e "`mv -v $i ~/.Trash/$FILENAME`"
else
mv $i ~/.Trash/$FILENAME
fi
else
# TODO add other option similar to rm -f to not output this error
echo -e "No such file or directory '$i'"
fi
done
}
# Refer to http://stackoverflow.com/questions/20572934/get-the-name-of-the-caller-script-in-bash-script
# to understand the next funtion
# usage: determine if the script was invoked by a user or other script
# if it was invoked by other scripts then use the system rm instead
# to avoid messing with other scripts behaviour.
function check_invoker()
{
PARENT_COMMAND=$(ps $PPID | tail -n 1 | awk "{print \$5}")
if [ $PARENT_COMMAND == '-bash' ]; then
check_trash_directory $@
else
/bin/rm $@
exit 0
fi
}
# Main
check_invoker $@
exit 0