From 6121243ca3439e89c1c6adc66dd09a1ea7383ad4 Mon Sep 17 00:00:00 2001
From: Wenxuan <wenxuangm@gmail.com>
Date: Sat, 14 Apr 2018 10:27:58 +0800
Subject: :bug: Revert wrong refactor

---
 fzf-url.sh | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/fzf-url.sh b/fzf-url.sh
index ae5a75d..48dcc45 100755
--- a/fzf-url.sh
+++ b/fzf-url.sh
@@ -16,9 +16,8 @@ elif hash open &>/dev/null; then
 fi
 
 content="$(tmux capture-pane -J -p)"
-IFS=' \n'
-read -ra urls <<< "$(echo "$content" |grep -oE '\b(https?|ftp|file)://[-A-Za-z0-9+&@#/%?=~_|!:,.;]*[-A-Za-z0-9+&@#/%=~_|]')"
-read -ra ips  <<< "$(echo "$content" |grep -oE '[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}(:[0-9].*)?' | sed 's/\(.*\)/http:\/\/\1/')"
+urls=($(echo "$content" |grep -oE '\b(https?|ftp|file)://[-A-Za-z0-9+&@#/%?=~_|!:,.;]*[-A-Za-z0-9+&@#/%=~_|]'))
+ips=($(echo "$content" |grep -oE '[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}(:[0-9].*)?' | sed 's/\(.*\)/http:\/\/\1/'))
 
 merge() {
     for item in "$@" ; do
-- 
cgit v1.2.3