gpterm 0.4.0 → 0.4.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/client.rb +2 -0
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e77a65025792f307da8e9cbc3d152c805ac99693ec166aefb34daf33e03342a1
|
4
|
+
data.tar.gz: a60503f8eccdb64bce12bbc04190b9f56607d3ee55dcbfbfe9ac270162fdf97b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: edccfb30f83becb981042ee7c533fc4ad3754fac9fc6a9dd70d2b51fa7055abe1c09ee52fb814612c16dc0926fa72be53cfba563a76c9b00cef3bd202ec986e1
|
7
|
+
data.tar.gz: acde43696b1afc0f762d6b34a5a6a6fdde5e150a849f269e1b9fc8abf68c17dea4f6e6cbbb90146c10240cfa3d95765e31d18830c61c114e6b667624632c90c0
|
data/lib/client.rb
CHANGED
@@ -21,6 +21,8 @@ class Client
|
|
21
21
|
|
22
22
|
You have the ability to run any command that this system can run, and you can read the output of those commands.
|
23
23
|
|
24
|
+
However, any command which would ordinarily change the directory, such as cd, will not change the location of the directory in which you are running. To execute a command in a different directory, you must chain the cd command with the command you want to run, like so: `cd /path/to/directory && command`.
|
25
|
+
|
24
26
|
The user is trying to accomplish a task using the terminal, but they are not sure how to do it.
|
25
27
|
PROMPT
|
26
28
|
|