fix(bash): run ll on source dir after a call to mvf (#117)

Reviewed-on: https://codeberg.org/vlw/dotfiles/pulls/117
This commit is contained in:
Victor Westerlund 2026-02-27 10:29:37 +01:00
parent 52da9268ad
commit d19f7002f7

View file

@ -173,6 +173,7 @@ swp () {
# Move all files from a source directory to a target directory # Move all files from a source directory to a target directory
mvf () { mvf () {
find "$1" -maxdepth 1 -type f -exec mv {} "$2" \; find "$1" -maxdepth 1 -type f -exec mv {} "$2" \;
ll $1
} }
# +-----+ # +-----+