Handy scripts you'd like to share

My interactive history clear script script

For Beginners : [Can be run through external program i.e konsole]


For PRO Users : [Minimal]
One click removal

#!/bin/bash

# Clear all the history from bash prompt @ .bash_history
    echo '' > /home/$USER/.bash_history

# Clear fish_history file
    echo '' > /home/$USER/.local/share/fish/fish_history

I’m just 1/2 year old linux user

1 Like