#!/bin/bash # # Script to display links from pine, # Either to click or in a text viewer # clear echo -e "\n\n\nYour URL is below:\n\n\t$@" echo -e "\n0) Quit" echo "1) View in Links." echo "2) View in Lynx" echo -e "\n(Anything else quits also)\n" read -p "Enter your selection then . " K if [ "$K" = '1' ]; then links "$@" elif [ "$K" = '2' ]; then lynx "$@" fi clear exit 0