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