notes/scripts/shutdown.sh
2022-07-07 13:05:06 -07:00

13 lines
293 B
Bash
Executable file

#!/bin/bash
last_line_first_word=$(awk '{w=$1} END{print w}' $HOME/.zshrc)
if [[ $last_line_first_word == "export" ]] ; then
sed -i '$ d' $HOME/.zshrc
fi
if [ -d "$HOME/.recycle-bin" ] ; then
doas rm -r "$HOME/.recycle-bin/" && doas shutdown -h now
else
doas shutdown -h now
fi