7 lines
145 B
Bash
Executable file
7 lines
145 B
Bash
Executable file
#!/bin/bash
|
|
|
|
if [ -d "$HOME/.recycle-bin" ] ; then
|
|
doas rm -r "$HOME/.recycle-bin/" && doas shutdown -h now
|
|
else
|
|
doas shutdown -h now
|
|
fi
|