blob: 6f31f80ae6034abba3c7ad04d1dce1cdcd377263 (
plain) (
tree)
|
|
#!/usr/bin/bash
# 01/11/2022
# Get the user to type something
# for use in newsboat config.
# This is triggered by browser macro hack (,y) - you type a comment
# then this script pipes it to _tj
echo "Enter a comment: "
read -r comment
echo -e "$comment": "$1"|_tj # I can't be bothered checking whether `_tj` exists...
|