2023-05-14 17:24:43 +00:00
|
|
|
#!/bin/sh
|
2021-10-10 20:26:06 +00:00
|
|
|
|
|
|
|
if [[ -z "$@" ]]; then
|
2024-11-03 23:36:22 +00:00
|
|
|
echo "^b .*$"
|
2021-10-10 20:26:06 +00:00
|
|
|
elif [[ "$1" == "--hint" ]]; then
|
2024-11-03 23:36:22 +00:00
|
|
|
shift
|
|
|
|
if [[ -f ~/.bookmarks.txt ]]; then
|
2024-11-20 07:08:16 +00:00
|
|
|
cat ~/.bookmarks.txt | awk '{printf("%s b", $1); for (i=2; i<=NF; i++) printf(" %s", $i); print("");}'
|
2024-11-03 23:36:22 +00:00
|
|
|
fi
|
2021-10-10 20:26:06 +00:00
|
|
|
elif [[ "$1" == "--complete" ]]; then
|
2024-11-03 23:36:22 +00:00
|
|
|
shift
|
|
|
|
if [[ -f ~/.bookmarks.txt ]]; then
|
2024-11-20 07:08:16 +00:00
|
|
|
cat ~/.bookmarks.txt | awk '{printf("%s b", $1); for (i=2; i<=NF; i++) printf(" %s", $i); print("");}'
|
2024-11-03 23:36:22 +00:00
|
|
|
fi
|
2021-10-10 20:26:06 +00:00
|
|
|
elif [[ "$1" == "--preview" ]]; then
|
2024-11-03 23:36:22 +00:00
|
|
|
shift
|
|
|
|
echo "$1"
|
2021-10-10 20:26:06 +00:00
|
|
|
elif [[ "$1" == "--run" ]]; then
|
2024-11-03 23:36:22 +00:00
|
|
|
shift
|
2024-11-20 07:08:16 +00:00
|
|
|
xdg-open "$2"
|
2021-10-10 20:26:06 +00:00
|
|
|
else
|
2024-11-03 23:36:22 +00:00
|
|
|
echo "Unexpected arguments: $@"
|
2021-10-10 20:26:06 +00:00
|
|
|
fi
|