mirror of
https://codeberg.org/vlw/dotfiles.git
synced 2025-09-14 03:03:42 +02:00
fix: run l
after cdl
instead of ll
(#5)
`cdl` is the "change dir and list" and `cdll` is "change dir and list hidden" Reviewed-on: https://codeberg.org/vlw/dotfiles/pulls/5
This commit is contained in:
parent
aeb51ec2ca
commit
bea23e4341
1 changed files with 2 additions and 2 deletions
|
@ -10,12 +10,12 @@ alias ll="ls -lah"
|
||||||
# cd +
|
# cd +
|
||||||
cdl () {
|
cdl () {
|
||||||
cd -P -- "$1" &&
|
cd -P -- "$1" &&
|
||||||
ll
|
l
|
||||||
}
|
}
|
||||||
|
|
||||||
cdll () {
|
cdll () {
|
||||||
cp -P -- "$1" &&
|
cp -P -- "$1" &&
|
||||||
lll
|
ll
|
||||||
}
|
}
|
||||||
|
|
||||||
# Create standard git WIP commit with timestamps
|
# Create standard git WIP commit with timestamps
|
||||||
|
|
Loading…
Add table
Reference in a new issue