Skip to content

Commit 979a003

Browse files
DOC-4543 fixed links to CLI page
1 parent 27993f2 commit 979a003

File tree

24 files changed

+32
-32
lines changed

24 files changed

+32
-32
lines changed

content/develop/clients/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,5 +58,5 @@ You will need access to a Redis server to use these libraries.
5858
You can experiment with a local installation of Redis Stack
5959
(see [Install Redis Stack]({{< relref "/operate/oss_and_stack/install/install-stack/" >}})) or with a free trial of [Redis Cloud]({{< relref "/operate/rc" >}}).
6060
To interact with a Redis server without writing code, use the
61-
[Redis CLI]({{< relref "/develop/connect/cli" >}}) and
61+
[Redis CLI]({{< relref "/develop/tools/cli" >}}) and
6262
[Redis Insight]({{< relref "/develop/connect/insight" >}}) tools.

content/develop/clients/redis-py/connect.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ cityNameAttempt2 = r.get("city") # Retrieved from cache
132132
```
133133

134134
You can see the cache working if you connect to the same Redis database
135-
with [`redis-cli`]({{< relref "/develop/connect/cli" >}}) and run the
135+
with [`redis-cli`]({{< relref "/develop/tools/cli" >}}) and run the
136136
[`MONITOR`]({{< relref "/commands/monitor" >}}) command. If you run the
137137
code above with the `cache_config` line commented out, you should see
138138
the following in the CLI among the output from `MONITOR`:

content/develop/data-types/probabilistic/Configuration.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ In [redis.conf]({{< relref "/operate/oss_and_stack/management/config" >}}):
2828
loadmodule ./redisbloom.so [OPT VAL]...
2929
```
3030

31-
From the [Redis CLI]({{< relref "/develop/connect/cli" >}}), using the [MODULE LOAD]({{< relref "/commands/module-load" >}}) command:
31+
From the [Redis CLI]({{< relref "/develop/tools/cli" >}}), using the [MODULE LOAD]({{< relref "/commands/module-load" >}}) command:
3232

3333
```
3434
127.0.0.6379> MODULE LOAD redisbloom.so [OPT VAL]...

content/develop/data-types/timeseries/configuration.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ In [redis.conf]({{< relref "/operate/oss_and_stack/management/config" >}}):
2828
loadmodule ./redistimeseries.so [OPT VAL]...
2929
```
3030

31-
From the [Redis CLI]({{< relref "/develop/connect/cli" >}}), using the [MODULE LOAD]({{< relref "/commands/module-load" >}}) command:
31+
From the [Redis CLI]({{< relref "/develop/tools/cli" >}}), using the [MODULE LOAD]({{< relref "/commands/module-load" >}}) command:
3232

3333
```
3434
127.0.0.6379> MODULE LOAD redistimeseries.so [OPT VAL]...

content/develop/interact/programmability/eval-intro.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -407,7 +407,7 @@ Note: an important part of this behavior is that the PRNG that Redis implements
407407
## Debugging Eval scripts
408408

409409
Starting with Redis 3.2, Redis has support for native Lua debugging.
410-
The Redis Lua debugger is a remote debugger consisting of a server, which is Redis itself, and a client, which is by default [`redis-cli`]({{< relref "/develop/connect/cli" >}}).
410+
The Redis Lua debugger is a remote debugger consisting of a server, which is Redis itself, and a client, which is by default [`redis-cli`]({{< relref "/develop/tools/cli" >}}).
411411

412412
The Lua debugger is described in the [Lua scripts debugging]({{< relref "/develop/interact/programmability/lua-debugging" >}}) section of the Redis documentation.
413413

content/develop/interact/search-and-query/advanced-concepts/tags.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ HSET test:1 tags "Andrew's Top 5,Justin's Top 5"
149149

150150
However, when you query for those tags, you must escape the punctuation characters
151151
with a backslash (`\`). So, querying for the tag `Andrew's Top 5` in
152-
[`redis-cli`]({{< relref "/develop/connect/cli" >}}) looks like this:
152+
[`redis-cli`]({{< relref "/develop/tools/cli" >}}) looks like this:
153153

154154
```
155155
FT.SEARCH punctuation "@tags:{ Andrew\\'s Top 5 }"

content/develop/interact/search-and-query/basic-constructs/configuration-parameters.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ In [redis.conf]({{< relref "/operate/oss_and_stack/management/config" >}}):
2929
loadmodule ./redisearch.so [OPT VAL]...
3030
```
3131

32-
From the [Redis CLI]({{< relref "/develop/connect/cli" >}}), using the [MODULE LOAD]({{< relref "/commands/module-load" >}}) command:
32+
From the [Redis CLI]({{< relref "/develop/tools/cli" >}}), using the [MODULE LOAD]({{< relref "/commands/module-load" >}}) command:
3333

3434
```
3535
127.0.0.6379> MODULE LOAD redisearch.so [OPT VAL]...

content/develop/reference/eviction/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ maxmemory 100mb
4747
```
4848

4949
You can also use [`CONFIG SET`]({{< relref "/commands/config-set" >}}) to
50-
set `maxmemory` at runtime using [`redis-cli`]({{< relref "/develop/connect/cli" >}}):
50+
set `maxmemory` at runtime using [`redis-cli`]({{< relref "/develop/tools/cli" >}}):
5151

5252
```bash
5353
> CONFIG SET maxmemory 100mb

content/develop/reference/protocol-spec.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -482,7 +482,7 @@ Example:
482482
(The raw RESP encoding is split into multiple lines for readability).
483483

484484
Some client libraries may ignore the difference between this type and the string type and return a native string in both cases.
485-
However, interactive clients, such as command line interfaces (e.g., [`redis-cli`]({{< relref "/develop/connect/cli" >}})), can use this type and know that their output should be presented to the human user as is and without quoting the string.
485+
However, interactive clients, such as command line interfaces (e.g., [`redis-cli`]({{< relref "/develop/tools/cli" >}})), can use this type and know that their output should be presented to the human user as is and without quoting the string.
486486

487487
For example, the Redis command [`INFO`]({{< relref "/commands/info" >}}) outputs a report that includes newlines.
488488
When using RESP3, `redis-cli` displays it correctly because it is sent as a Verbatim String reply (with its three bytes being "txt").

content/develop/tools/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ manage it and interact with the data:
2525

2626
## Redis command line interface (CLI)
2727

28-
The [Redis command line interface]({{< relref "/develop/connect/cli" >}}) (also known as `redis-cli`) is a terminal program that sends commands to and reads replies from the Redis server. It has the following two main modes:
28+
The [Redis command line interface]({{< relref "/develop/tools/cli" >}}) (also known as `redis-cli`) is a terminal program that sends commands to and reads replies from the Redis server. It has the following two main modes:
2929

3030
1. An interactive Read Eval Print Loop (REPL) mode where the user types Redis commands and receives replies.
3131
2. A command mode where `redis-cli` is executed with additional arguments, and the reply is printed to the standard output.

0 commit comments

Comments
 (0)