From 82b750354e4ae9453394349df7e68c9a8762a3ad Mon Sep 17 00:00:00 2001 From: Justin Hileman Date: Sun, 31 May 2015 08:30:49 -0700 Subject: [PATCH] [split] Move replace plugin to oh-my-fish/plugin-replace https://github.com/oh-my-fish/plugin-replace --- plugins/replace/replace.fish | 6 ------ 1 file changed, 6 deletions(-) delete mode 100644 plugins/replace/replace.fish diff --git a/plugins/replace/replace.fish b/plugins/replace/replace.fish deleted file mode 100644 index fcc30ed..0000000 --- a/plugins/replace/replace.fish +++ /dev/null @@ -1,6 +0,0 @@ -function replace --description 'Find and replace by a given list of files.' - set find_this $argv[1] - set replace_with $argv[2] - - ag -l $find_this $argv[3..-1] | xargs sed -i '' "s/$find_this/$replace_with/g" -end