Обсуждение: [MASSMAIL]Output shell variable from psql

Поиск
Список
Период
Сортировка

[MASSMAIL]Output shell variable from psql

От
Murthy Nunna
Дата:

Hi,

 

Is there a way to output shell variable from psql?

 

export TEST_V=7

echo Value is  ${TEST_V}

Value is 7

 

psql -U postgres -p 5439

\echo Value is  ${TEST_V}

Value is ${TEST_V}

 

Thanks!

 

 

Re: Output shell variable from psql

От
Wim Bertels
Дата:
Murthy Nunna schreef op ma 08-04-2024 om 15:17 [+0000]:
> U ontvangt niet vaak e-mail van mnunna@fnal.gov. Meer informatie over
> waarom dit belangrijk is
> 
> Hi,
>  
> Is there a way to output shell variable from psql?
>  
> export TEST_V=7
> echo Value is  ${TEST_V}
> Value is 7
>  
> psql -U postgres -p 5439
> \echo Value is  ${TEST_V}
> Value is ${TEST_V}

$ export test=E
$ psql
psql (16.2 (Debian 16.2-1.pgdg120+2))
Type "help" for help.

wim=# \! echo $test
E
wim=# 

hth,
Wim

>  
> Thanks!
>  
>  


RE: Output shell variable from psql

От
Murthy Nunna
Дата:
Thanks! That worked.

-----Original Message-----
From: Wim Bertels <wim.bertels@ucll.be> 
Sent: Monday, April 8, 2024 10:30 AM
To: pgsql-admin@postgresql.org; Murthy Nunna <mnunna@fnal.gov>
Subject: Re: Output shell variable from psql

[EXTERNAL] – This message is from an external sender

Murthy Nunna schreef op ma 08-04-2024 om 15:17 [+0000]:
> U ontvangt niet vaak e-mail van mnunna@fnal.gov. Meer informatie over 
> waarom dit belangrijk is
>
> Hi,
>
> Is there a way to output shell variable from psql?
>
> export TEST_V=7
> echo Value is  ${TEST_V}
> Value is 7
>
> psql -U postgres -p 5439
> \echo Value is  ${TEST_V}
> Value is ${TEST_V}

$ export test=E
$ psql
psql (16.2 (Debian 16.2-1.pgdg120+2))
Type "help" for help.

wim=# \! echo $test
E
wim=#

hth,
Wim

>
> Thanks!
>
>