psql man page error?

Поиск
Список
Период
Сортировка
От Simon Riggs
Тема psql man page error?
Дата
Msg-id 1165319827.3839.146.camel@silverbirch.site
обсуждение исходный текст
Ответы Re: psql man page error?  (Jeff Frost <jeff@frostconsultingllc.com>)
Re: psql man page error?  (Bruce Momjian <bruce@momjian.us>)
Список pgsql-docs
On the psql man page there is an example of how to perform multiple line
psql script as part of the -c option description.

The example given is

    echo "\x \\ select * from foo;" | psql

which gives

    prompt> echo "\x \\ select * from foo;" | psql
    Expanded display is on.
    invalid command \

i.e. doesn't work on bash. With bash the command should be:

    echo -e "\x \n select * from foo;" | psql

which gives

    prompt> echo -e "\x \n select * from foo;" | psql
    Expanded display is on.
    ERROR:  relation "foo" does not exist

Does this mean there are multiple forms of the echo command, or is this
example just wrong?

--
  Simon Riggs
  EnterpriseDB   http://www.enterprisedb.com



В списке pgsql-docs по дате отправления:

Предыдущее
От: Iannsp
Дата:
Сообщение: Re: [pgsql-www] 8.2.0 pdf
Следующее
От: Jeff Frost
Дата:
Сообщение: Re: psql man page error?