Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
5a75ad55
Commit
5a75ad55
authored
May 09, 2000
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update psql \? to show file rather than "fname".
parent
6706194e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
7 deletions
+7
-7
src/bin/psql/help.c
src/bin/psql/help.c
+7
-7
No files found.
src/bin/psql/help.c
View file @
5a75ad55
...
...
@@ -3,7 +3,7 @@
*
* Copyright 2000 by PostgreSQL Global Development Group
*
* $Header: /cvsroot/pgsql/src/bin/psql/help.c,v 1.2
6 2000/04/24 22:41:43
momjian Exp $
* $Header: /cvsroot/pgsql/src/bin/psql/help.c,v 1.2
7 2000/05/09 19:08:36
momjian Exp $
*/
#include "postgres.h"
#include "help.h"
...
...
@@ -208,30 +208,30 @@ slashUsage(void)
fprintf
(
fout
,
"
\\
df list functions
\n
"
);
fprintf
(
fout
,
"
\\
do list operators
\n
"
);
fprintf
(
fout
,
"
\\
dT list data types
\n
"
);
fprintf
(
fout
,
"
\\
e [f
name] edit the current query buffer or <fname>
with external editor
\n
"
);
fprintf
(
fout
,
"
\\
e [f
ile] edit the current query buffer or [file]
with external editor
\n
"
);
fprintf
(
fout
,
"
\\
echo <text> write text to stdout
\n
"
);
fprintf
(
fout
,
"
\\
encoding <encoding> set client encoding
\n
"
);
fprintf
(
fout
,
"
\\
f <sep> change field separator
\n
"
);
fprintf
(
fout
,
"
\\
g [f
name] send query to backend (and results in <fname>
or |pipe)
\n
"
);
fprintf
(
fout
,
"
\\
g [f
ile] send query to backend (and results in [file]
or |pipe)
\n
"
);
fprintf
(
fout
,
"
\\
h [cmd] help on syntax of sql commands, * for all commands
\n
"
);
fprintf
(
fout
,
"
\\
H toggle HTML mode (currently %s)
\n
"
,
ON
(
pset
.
popt
.
topt
.
format
==
PRINT_HTML
));
fprintf
(
fout
,
"
\\
i <f
name> read and execute queries from filename
\n
"
);
fprintf
(
fout
,
"
\\
i <f
ile> read and execute queries from <file>
\n
"
);
fprintf
(
fout
,
"
\\
l list all databases
\n
"
);
fprintf
(
fout
,
"
\\
lo_export,
\\
lo_import,
\\
lo_list,
\\
lo_unlink
\n
"
" large object operations
\n
"
);
fprintf
(
fout
,
"
\\
o [f
name] send all query results to <fname>
, or |pipe
\n
"
);
fprintf
(
fout
,
"
\\
o [f
ile] send all query results to [file]
, or |pipe
\n
"
);
fprintf
(
fout
,
"
\\
p show the content of the current query buffer
\n
"
);
fprintf
(
fout
,
"
\\
pset {format|border|expanded|fieldsep|recordsep|tuples_only|title|tableattr
\n
"
" |pager} set table output options
\n
"
);
fprintf
(
fout
,
"
\\
q quit psql
\n
"
);
fprintf
(
fout
,
"
\\
qecho <text> write text to query output stream (see
\\
o)
\n
"
);
fprintf
(
fout
,
"
\\
r reset (clear) the query buffer
\n
"
);
fprintf
(
fout
,
"
\\
s [f
name] print history or save it in <fname>
\n
"
);
fprintf
(
fout
,
"
\\
s [f
ile] print history or save it in [file]
\n
"
);
fprintf
(
fout
,
"
\\
set <var> <value> set internal variable
\n
"
);
fprintf
(
fout
,
"
\\
t don't show table headers or footers (currently %s)
\n
"
,
ON
(
pset
.
popt
.
topt
.
tuples_only
));
fprintf
(
fout
,
"
\\
unset <var> unset (delete) internal variable
\n
"
);
fprintf
(
fout
,
"
\\
w <f
name> write current query buffer to a file
\n
"
);
fprintf
(
fout
,
"
\\
w <f
ile> write current query buffer to a <file>
\n
"
);
fprintf
(
fout
,
"
\\
x toggle expanded output (currently %s)
\n
"
,
ON
(
pset
.
popt
.
topt
.
expanded
));
fprintf
(
fout
,
"
\\
z list table access permissions
\n
"
);
fprintf
(
fout
,
"
\\
! [cmd] shell escape or command
\n
"
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment