11 lines
113 B
Plaintext
11 lines
113 B
Plaintext
|
#!/bin/bash
|
||
|
|
||
|
if (which lsd &> /dev/null)
|
||
|
then
|
||
|
|
||
|
# create a aliases
|
||
|
alias ls='lsd'
|
||
|
alias lt='lsd --tree'
|
||
|
|
||
|
fi
|