7 lines
87 B
Bash
Executable file
7 lines
87 B
Bash
Executable file
#!/bin/sh
|
|
|
|
bm="$(menu-bookmarks)"
|
|
|
|
if [ -n "$bm" ]; then
|
|
printf '%s' "$bm" | clip
|
|
fi
|