From afdf9a2b8318276c1d2e246a20aeb2f4a39290a4 Mon Sep 17 00:00:00 2001 From: archikid02 Date: Sat, 31 Jan 2026 17:25:01 +0000 Subject: [PATCH] pop (recursive) --- usr/bin/pop | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/usr/bin/pop b/usr/bin/pop index e1c77ed..9cffed4 100755 --- a/usr/bin/pop +++ b/usr/bin/pop @@ -6,8 +6,8 @@ if [ "$#" -lt 1 ] ; then fi for DIR in "#@" ; do - cp * . - cp .* . + cp -r * . + cp -r .* . mv $DIR /tmp done