1
0
linux-profile/profile
2025-06-01 04:23:22 +02:00

18 lines
517 B
Bash

#!/bin/bash
clrreset='\e[0m'
clrwhite='\e[1;37m'
clrgreen='\e[1;32m'
clrred='\e[1;31m'
export PS1="\[$clrwhite\]\w \`if [ \$? = 0 ]; then echo -e '\[$clrgreen\]'; else echo -e '\[$clrred\]'; fi\`\\$ \[$clrreset\]"
alias l='ls --color=auto -lAh --time-style long-iso'
alias ls='ls --color=auto -lh --time-style long-iso'
alias ll='ls --color=auto -lah --time-style long-iso'
alias cd..='cd ..'
alias f='find . -name'
alias ff='find / -name'
alias fif='grep -rnw . -e'
alias grep='grep --color=auto'
alias ip='ip -c'