Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
nu11secur1ty
GitHub Repository: nu11secur1ty/Kali-Linux
Path: blob/master/logo/uninstall_logo.sh
1303 views
1
#!/usr/bin/bash
2
# author @nu11secur1ty 2020
3
sed 's/figlet.*//' .bashrc > uninstall_logo
4
cat /dev/null > .bashrc
5
cat uninstall_logo > .bashrc
6
sleep 3;
7
rm uninstall_logo
8
exit 0;
9
10