From 152344a8018d2d96780ea27ea83bef883f9d0e53 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Leonardo=20Eug=C3=AAnio?= Date: Fri, 6 Oct 2023 23:07:15 -0300 Subject: [PATCH] scripts: fix copying files in download script --- scripts/down_meme | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/down_meme b/scripts/down_meme index d9ed9d6..133fe33 100755 --- a/scripts/down_meme +++ b/scripts/down_meme @@ -10,7 +10,7 @@ FILENAME="$(ls | head -n1)" mkdir -p "$HOME/Downloads/Memes" -cp * "$HOME/Downloads/Memes/$FILENAME" +cp "$FILENAME" "$HOME/Downloads/Memes/$FILENAME" wl-copy-file "$HOME/Downloads/Memes/$FILENAME"