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" LESS="-S"
export PG="psql -U ptrowbridge -d ubm -p 54329 -h hptrow.me" 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 PGD="psql -U ptrowbridge -d ubm -p 54339 -h hptrow.me"
export PSQL_PAGER="pspg"
# GOPATH=$HOME/go # GOPATH=$HOME/go
# function _update_ps1() { # function _update_ps1() {

View File

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