Adding new stuff
This commit is contained in:
parent
3de9cfbccb
commit
756244e2c1
5 changed files with 10 additions and 2 deletions
|
|
@ -44,8 +44,16 @@ send_key() {
|
|||
|
||||
function ls(){
|
||||
if [[ $2 == "-l" ]]; then
|
||||
exa -bghHliS
|
||||
if [[ $3 != "" ]]; then
|
||||
exa -bghHliS $3
|
||||
else
|
||||
exa -bghHliS
|
||||
fi
|
||||
else
|
||||
/bin/ls --color=auto
|
||||
if [[ $2 != "" ]]; then
|
||||
/bin/ls --color=auto $2
|
||||
else
|
||||
/bin/ls --color=auto
|
||||
fi
|
||||
fi
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue