From 2ee671201c3179a5a82db933a513949196ee0e76 Mon Sep 17 00:00:00 2001 From: cupcakearmy Date: Wed, 26 Oct 2022 15:59:19 +0200 Subject: [PATCH] rename docker system prune --- files/fish/functions/dpa.fish | 4 ---- files/fish/functions/dsp.fish | 3 +++ 2 files changed, 3 insertions(+), 4 deletions(-) delete mode 100644 files/fish/functions/dpa.fish create mode 100644 files/fish/functions/dsp.fish diff --git a/files/fish/functions/dpa.fish b/files/fish/functions/dpa.fish deleted file mode 100644 index 4ad9b06..0000000 --- a/files/fish/functions/dpa.fish +++ /dev/null @@ -1,4 +0,0 @@ -# Defined in - @ line 1 -function dpa --wraps='docker system prune -af --volumes' --description 'alias dpa docker system prune -af --volumes' - docker system prune -af --volumes $argv; -end diff --git a/files/fish/functions/dsp.fish b/files/fish/functions/dsp.fish new file mode 100644 index 0000000..6c0ba45 --- /dev/null +++ b/files/fish/functions/dsp.fish @@ -0,0 +1,3 @@ +function dsp --wraps='docker system prune -a --volumes' --description 'alias dsp docker system prune -a --volumes' + docker system prune -a --volumes $argv; +end