add new chinese translations

This commit is contained in:
2024-12-30 15:25:56 +08:00
parent a850046d7b
commit 0d798759fd
5418 changed files with 105800 additions and 7052 deletions

View File

@@ -0,0 +1,32 @@
# smbclient
> 类似FTP的客户端用于访问服务器上的SMB/CIFS资源。
> 更多信息:<https://manned.org/smbclient>。
- 连接到共享(用户将被提示输入密码;使用`exit`退出会话):
`smbclient {{//server/share}}`
- 使用不同的用户名连接:
`smbclient {{//server/share}} --user {{username}}`
- 使用不同的工作组连接:
`smbclient {{//server/share}} --workgroup {{domain}} --user {{username}}`
- 使用用户名和密码连接:
`smbclient {{//server/share}} --user {{username%password}}`
- 从服务器下载文件:
`smbclient {{//server/share}} --directory {{path/to/directory}} --command "get {{file.txt}}"`
- 将文件上传到服务器:
`smbclient {{//server/share}} --directory {{path/to/directory}} --command "put {{file.txt}}"`
- 匿名列出服务器上的共享:
`smbclient --list={{server}} --no-pass`