From c7099e632c10efcc48d1b9091b06e165c8e9d563 Mon Sep 17 00:00:00 2001 From: Hyperling Date: Fri, 26 Jun 2026 10:44:31 -0700 Subject: [PATCH] Move the folder name shortcut to its own alias and use it for qpv. --- rc_shared.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/rc_shared.sh b/rc_shared.sh index 5dbb9dd..12554d2 100644 --- a/rc_shared.sh +++ b/rc_shared.sh @@ -481,7 +481,8 @@ function process-video { return $status } alias pv="process-video" -alias qpv='pv ./raw/YouCut*.mp4 $(basename `pwd`).mp4' +alias fn='basename `pwd`' # Folder Name +alias qpv='pv ./raw/YouCut*.mp4 `fn`.mp4' # Quick Process Video # Allow converting video to audio and other smaller # tasks than what process-video is intended to do.