install and setup pspg and make psql default pager

This commit is contained in:
Paul Trowbridge 2022-04-27 20:28:56 -04:00
parent 1429d228e5
commit 66fcf702d4
2 changed files with 16 additions and 5 deletions

View File

@ -121,6 +121,7 @@ PAGER="less"
LESS="-S"
export PG="psql -U ptrowbridge -d ubm -p 54329 -h hptrow.me"
export PGD="psql -U ptrowbridge -d ubm -p 54339 -h hptrow.me"
export PSQL_PAGER="pspg"
# GOPATH=$HOME/go
# function _update_ps1() {

View File

@ -5,7 +5,7 @@
dir=~/dot_config
backup=~/dot_config_backup
files=".bashrc .vimrc .tmux.conf .psqlrc .gitconfig .inputrc"
files=".bashrc .vimrc .tmux.conf .psqlrc .gitconfig .inputrc .pspgconf"
#-------------------------------------------------install debian tooling-----------------------------------------------------------------------------------
@ -14,17 +14,17 @@ if [ "$(dpkg-query -W -f='${Status}' "curl" 2>/dev/null | grep -c "ok installed"
then
echo "curl already installed"
else
echo "installing curl"
echo "installing curl..."
apt update -q4
apt install curl -y
fi
#----------vim-----------
if [ "$(dpkg-query -W -f='${Status}' "curl" 2>/dev/null | grep -c "ok installed")" == "1" ]
if [ "$(dpkg-query -W -f='${Status}' "vim" 2>/dev/null | grep -c "ok installed")" == "1" ]
then
echo "vim already installed"
else
echo "installing vim"
echo "installing vim..."
apt update -q4
apt install vim -y
fi
@ -34,11 +34,21 @@ if [ "$(dpkg-query -W -f='${Status}' "tmux" 2>/dev/null | grep -c "ok installed"
then
echo "tmux already installed"
else
echo "installing tmux"
echo "installing tmux..."
apt update -q4
apt install tmux -y
fi
#----------pspg-----------
if [ "$(dpkg-query -W -f='${Status}' "pspg" 2>/dev/null | grep -c "ok installed")" == "1" ]
then
echo "pspg already installed"
else
echo "installing pspg..."
apt update -q4
apt install pspg -y
fi
#------------------------------------------------ create the resore directory if it doesn't already exist--------------------------------------------------
if [ ! -d $backup ]