App-bookmarks
view release on metacpan or search on metacpan
```
alias lk="bookmarks | uricolor | fzf --ansi --exact --multi | urifind | xargs open"
```
- `uricolor` colorizes URIs to distinguish them from title and description.
- `fzf` is a fuzzy finder : use TAB for multiple selection, press ENTER to confirm, or ESC to cancel.
- `urifind` extracts all URIs. Try `uricolor -s` and `urifind --schemeless` to find schemeless URLs.
- Selected URIs will open with your default browser or application.
- Since `open` uses macOS _Launch Services_ to determine which program to run, most common schemes such as `ftp://` or `ssh://` are automatically recognized.
N.B. On Windows, I use [busybox-w32](https://frippery.org/busybox/) and a file `lk.bat` containing :
```
@echo off
bookmarks | uricolor | fzf --ansi --exact --multi | urifind | busybox xargs -n1 cmd /c start ""
````
**Copy link(s) to clipboard :**
```
alias lkc="bookmarks | uricolor | fzf --ansi --exact --multi | urifind | pbcopy"
```
CHECK LINKS STATUS
------------------
( run in 0.242 second using v1.01-cache-2.11-cpan-87723dcf8b7 )