hwo untuk menambahkan perintah khusus dalam bash

# Go to user root directory
cd ~/

# Open bashrc file in your text editor
vi .bashrc

# Write custom alias command
alias cls="clear"

# Source your .bashrc file
source .bashrc
Xbu Ra1han