1
1
mirror of https://github.com/harelba/q.git synced 2024-11-20 11:19:04 +03:00

Use https for links (#293)

This commit is contained in:
谭九鼎 2022-01-25 01:44:04 +08:00 committed by GitHub
parent c49d9fa301
commit 4c835b9fa9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 10 additions and 10 deletions

View File

@ -20,7 +20,7 @@ The following table shows the impact of using caching:
Notice that for the current version, caching is **not enabled** by default, since the caches take disk space. Use `-C readwrite` or `-C read` to enable it for a query, or add `caching_mode` to `.qrc` to set a new default.
q's web site is [http://harelba.github.io/q/](http://harelba.github.io/q/) or [https://q.textasdata.wiki](https://q.textasdata.wiki) It contains everything you need to download and use q immediately.
q's web site is [https://harelba.github.io/q/](https://harelba.github.io/q/) or [https://q.textasdata.wiki](https://q.textasdata.wiki) It contains everything you need to download and use q immediately.
## Usage Examples
@ -36,12 +36,12 @@ $ ps -ef | q -H "SELECT UID, COUNT(*) cnt FROM - GROUP BY UID ORDER BY cnt DESC
$ q "select count(*) from some_db.sqlite3:::albums a left join another_db.sqlite3:::tracks t on (a.album_id = t.album_id)"
```
Detailed examples are in [here](http://harelba.github.io/q/#examples)
Detailed examples are in [here](https://harelba.github.io/q/#examples)
## Installation.
**New Major Version `3.1.6` is out with a lot of significant additions.**
Instructions for all OSs are [here](http://harelba.github.io/q/#installation).
Instructions for all OSs are [here](https://harelba.github.io/q/#installation).
The previous version `2.0.19` Can still be downloaded from [here](https://github.com/harelba/q/releases/tag/2.0.19)

View File

@ -23,7 +23,7 @@
#
# Its purpose is to bring SQL expressive power to manipulating text data using the Linux command line.
#
# Full Documentation and details in http://harelba.github.io/q/
# Full Documentation and details in https://harelba.github.io/q/
#
# Run with --help for command line details
#
@ -2399,7 +2399,7 @@ def print_credentials():
print("q version %s" % q_version, file=sys.stderr)
print("Python: %s" % " // ".join([str(x).strip() for x in sys.version.split("\n")]), file=sys.stderr)
print("Copyright (C) 2012-2021 Harel Ben-Attia (harelba@gmail.com, @harelba on twitter)", file=sys.stderr)
print("http://harelba.github.io/q/", file=sys.stderr)
print("https://harelba.github.io/q/", file=sys.stderr)
print(file=sys.stderr)
class QWarning(object):

View File

@ -57,7 +57,7 @@ Any standard SQL expression, condition (both WHERE and HAVING), GROUP BY, ORDER
JOINs are supported and Subqueries are supported in the WHERE clause, but unfortunately not in the FROM clause for now. Use table aliases when performing JOINs.
The SQL syntax itself is sqlite's syntax. For details look at http://www.sqlite.org/lang.html or search the net for examples.
The SQL syntax itself is sqlite's syntax. For details look at https://www.sqlite.org/lang.html or search the net for examples.
**NOTE:** Full type detection is implemented, so there is no need for any casting or anything.

View File

@ -303,7 +303,7 @@ Query/Input/Output encodings are fully supported (and q tries to provide out-of-
JOINs are supported and Subqueries are supported in the WHERE clause, but unfortunately not in the FROM clause for now. Use table aliases when performing JOINs.
The SQL syntax itself is sqlite's syntax. For details look at http://www.sqlite.org/lang.html or search the net for examples.
The SQL syntax itself is sqlite's syntax. For details look at https://www.sqlite.org/lang.html or search the net for examples.
NOTE: When using the `-O` output header option, use column name aliases if you want to control the output column names. For example, `q -O -H "select count(*) cnt,sum(*) as mysum from -"` would output `cnt` and `mysum` as the output header column names.

View File

@ -82,7 +82,7 @@ q 的每一个参数都是由双引号包裹的一条完整的SQL语句。所有
在WHERE条件查询中支持JOIN操作和子查询但在FROM子句中并不支持。JOIN操作时可以为文件起别名。
SQL语法同sqlite的语法详情见 http://www.sqlite.org/lang.html 或上网找一些示例。
SQL语法同sqlite的语法详情见 https://www.sqlite.org/lang.html 或上网找一些示例。
**注意**

View File

@ -1,6 +1,6 @@
site_name: q - Text as Data
site_url: http://harelba.github.io/q/
repo_url: http://github.com/harelba/q
site_url: https://harelba.github.io/q/
repo_url: https://github.com/harelba/q
edit_uri: ""
site_description: Text as Data - q is a command line tool that allows direct execution of SQL-like queries on CSVs/TSVs (and any other tabular text files).
site_author: Harel Ben-Attia