minor changes from bash_aliases

This commit is contained in:
Muha Aliss 2024-11-03 21:50:35 +03:00
parent 7a27c7cacd
commit a531d6f4f5

View file

@ -20,15 +20,14 @@ alias sea='dnf search'
# History
cl () {
HISCLS='history -cw'
HISFIL=$HOME/.bash_history
if [ -f "$HISFIL" ]; then
rm $HISFIL
clear
$HISCLS
history -cw
else
clear
$HISCLS
history -cw
fi
}