Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove introduction text on when reading from STDIN #179

Closed
asdine opened this issue Sep 7, 2020 · 0 comments · Fixed by #182
Closed

Remove introduction text on when reading from STDIN #179

asdine opened this issue Sep 7, 2020 · 0 comments · Fixed by #182
Labels
cli Command line good first issue Good for newcomers
Milestone

Comments

@asdine
Copy link
Collaborator

asdine commented Sep 7, 2020

Currently, whenever we are passing SQL queries to stdin we are also displaying the introduction header:

$ echo "SELECT 1 + 1" | genji
Opened an in-memory database.
Enter ".help" for usage hints.
{
  "1 + 1": 2
}

We want that text to be removed:

$ echo "SELECT 1 + 1" | genji
{
  "1 + 1": 2
}
@asdine asdine added good first issue Good for newcomers cli Command line labels Sep 7, 2020
@asdine asdine added this to the v0.8.0 milestone Sep 7, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
cli Command line good first issue Good for newcomers
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant