diff options
Diffstat (limited to 'scripts/url_search.sh')
-rwxr-xr-x | scripts/url_search.sh | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/scripts/url_search.sh b/scripts/url_search.sh deleted file mode 100755 index 54a0bc3..0000000 --- a/scripts/url_search.sh +++ /dev/null @@ -1,13 +0,0 @@ -#!/usr/bin/env bash -# vim: set filetype=sh -# -# Author: Cody Hiar -# Date: 2019-04-25 -# -# Description: Search tmux pane for urls then pass to fzf -# for copying to clipboard - -URL=$(tmux capture-pane -pS -30000 | perl -wnl -e '/https?\:\/\/[^\s]+[\/\w]/ and print $&' | fzf-tmux) -if [[ -n "$URL" ]]; then - echo "$URL" | xp -fi |