From 516d9119c22a1f5d50f9444fbfb39cbcff919c82 Mon Sep 17 00:00:00 2001 From: Parham Alvani Date: Wed, 9 Aug 2023 16:32:02 -0400 Subject: [PATCH] chore: remove unused script --- bin/bin/bookmark.sh | 15 --------------- 1 file changed, 15 deletions(-) delete mode 100755 bin/bin/bookmark.sh diff --git a/bin/bin/bookmark.sh b/bin/bin/bookmark.sh deleted file mode 100755 index 4a4ce627e..000000000 --- a/bin/bin/bookmark.sh +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/bash - -set -eu - -# find and open bookmarks using buku - -# save newline separated string into an array -mapfile -t website <<<"$(buku -p -f 4 | column -t -s $'\t' -E2 | fzf --multi)" - -# open each website -for i in "${website[@]}"; do - index="$(echo "$i" | awk '{print $1}')" - buku -p "$index" - buku -o "$index" -done