supertelegram 0.3.0 → 0.3.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.
- package/README.md +3 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -32,6 +32,7 @@ that's it! now you're ready to use telegram from the cli.
|
|
|
32
32
|
```bash
|
|
33
33
|
# send a message
|
|
34
34
|
telegram send @username "hello there"
|
|
35
|
+
telegram send "me" "note to self" # use "me" for saved messages
|
|
35
36
|
|
|
36
37
|
# read messages (shows [photo], [video], [file] indicators)
|
|
37
38
|
telegram read @username 10
|
|
@@ -51,12 +52,12 @@ telegram dialogs 10
|
|
|
51
52
|
```bash
|
|
52
53
|
# send a file with optional caption
|
|
53
54
|
telegram send-file @username photo.jpg
|
|
54
|
-
telegram send-file
|
|
55
|
+
telegram send-file "me" video.mp4 "check this out!"
|
|
55
56
|
|
|
56
57
|
# download media from a message
|
|
57
58
|
# (use 'read' command to get message IDs)
|
|
58
59
|
telegram download @username 12345 ./downloaded.jpg
|
|
59
|
-
telegram download
|
|
60
|
+
telegram download "me" 12346 # auto-named file
|
|
60
61
|
```
|
|
61
62
|
|
|
62
63
|
### config
|