From d8091c406404c300d4023ae69cff2aae1d8c6896 Mon Sep 17 00:00:00 2001 From: tomit4 Date: Sat, 25 Dec 2021 09:00:25 -0800 Subject: [PATCH] require su priveleges to use shred alias --- bashrc.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bashrc.txt b/bashrc.txt index 1337a705..c3d1bea3 100644 --- a/bashrc.txt +++ b/bashrc.txt @@ -248,7 +248,7 @@ alias rmorphans="doas pacman -Rs $(pacman -Qdtq)" alias npm_upgrade="doas npm install -g npm@latest" alias rm="newrm -vi" alias {doasedit,sudoedit}="doas rnano" -alias shred="shred -uz" # shreds the file and overwrites it with 1s and 0s +alias shred="doas shred -uz" # shreds the file and overwrites it with 1s and 0s alias indelible="doas chattr +i" # makes a file impossible to delete (except with sudo) export EDITOR=nvim