fix(bash): run ll after a call to mvf

This commit is contained in:
Victor Westerlund 2026-02-27 10:28:36 +01:00
parent 52da9268ad
commit 80ec96e9bb

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
} }
# +-----+ # +-----+