From caf018dea4d3212ca6f75f4f1e7d1b274646310d Mon Sep 17 00:00:00 2001 From: Daniel Fichtinger Date: Thu, 1 May 2025 16:30:05 -0400 Subject: [PATCH] AutoYADM commit: 2025-05-01 16:30:05 --- .config/fish/functions/mkdoc.fish | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 .config/fish/functions/mkdoc.fish diff --git a/.config/fish/functions/mkdoc.fish b/.config/fish/functions/mkdoc.fish new file mode 100644 index 00000000..a460cd25 --- /dev/null +++ b/.config/fish/functions/mkdoc.fish @@ -0,0 +1,6 @@ +function mkdoc --argument-names input --argument-names output + set -f dir ~/Documents + echo "$dir/$output" + echo cp $input "$dir/$output" + cp $input "$dir/$output" +end