安装tldr 后无法使用
Tofloor
poster avatar
xubudong123
deepin
2020-11-23 22:49
Author

安装tldr 后无法使用,提示Error: connect ECONNREFUSED 127.0.0.1:443


Reply Favorite View the author
All Replies
guaguale
deepin
2020-11-24 00:26
#1

https://github.com/tldr-pages/tldr  按照步骤了吗

Reply View the author
xubudong123
deepin
2020-11-24 23:01
#2
guaguale

https://github.com/tldr-pages/tldr  按照步骤了吗

我是 apt-get  install tldr

Reply View the author
guaguale
deepin
2020-11-25 00:01
#3
xubudong123

我是 apt-get  install tldr

deepin@deepin:~$ tldr tar                                                                                      
tar
Archiving utility.Often combined with a compression method, such as gzip or bzip.More information: https://www.gnu.org/software/tar.

- Create an archive from files:
tar cf {{target.tar}} {{file1}} {{file2}} {{file3}}

- Create a gzipped archive:
tar czf {{target.tar.gz}} {{file1}} {{file2}} {{file3}}

- Create a gzipped archive from a directory using relative paths:
tar czf {{target.tar.gz}} -C {{path/to/directory}} .

- Extract a (compressed) archive into the current directory:
tar xf {{source.tar[.gz|.bz2|.xz]}}

- Extract a (compressed) archive into the target directory:
tar xf {{source.tar[.gz|.bz2|.xz]}} -C {{directory}}


Reply View the author