From 80ec96e9bb284101d3f8a9dfae35307a9736420d Mon Sep 17 00:00:00 2001 From: Victor Westerlund Date: Fri, 27 Feb 2026 10:28:36 +0100 Subject: [PATCH] fix(bash): run ll after a call to mvf --- .bash_aliases | 1 + 1 file changed, 1 insertion(+) diff --git a/.bash_aliases b/.bash_aliases index c50f532..17ce87e 100644 --- a/.bash_aliases +++ b/.bash_aliases @@ -173,6 +173,7 @@ swp () { # Move all files from a source directory to a target directory mvf () { find "$1" -maxdepth 1 -type f -exec mv {} "$2" \; + ll $1 } # +-----+