diff options
author | Yuchen Pei <id@ypei.org> | 2024-06-13 12:11:01 +1000 |
---|---|---|
committer | Yuchen Pei <id@ypei.org> | 2024-06-13 12:11:01 +1000 |
commit | c63a897c0f9320e0b2b0a20f0de5ea847b423127 (patch) | |
tree | f22b37c4b2cd4cf1bd37a59b2e8ed765865c1d9d | |
parent | bd7de02820cbb4b03f3e8d94055c5786da35bcc7 (diff) |
[bash] do not assume location of reboot
-rw-r--r-- | misc/.bashrc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/misc/.bashrc b/misc/.bashrc index 95079eb..8d64a41 100644 --- a/misc/.bashrc +++ b/misc/.bashrc @@ -113,7 +113,7 @@ export HISTCONTROL=ignoreboth # aliases test -s ~/.alias && . ~/.alias || true alias shutdown='sudo /sbin/shutdown -hP now' -alias reboot='sudo /sbin/reboot' +alias reboot='sudo reboot' alias wifi-menu='sudo /usr/bin/wifi-menu' alias cd-='cd -' alias cd#='cd ~' |