Move pages under tldr, lint run.sh, update docs

This commit is contained in:
2024-02-21 13:58:43 +02:00
parent 3d653cc7e6
commit 2c475fa62d
4806 changed files with 36 additions and 35 deletions

25
tldr/linux/smbget Normal file
View File

@@ -0,0 +1,25 @@
---
syntax: markdown
tags: [tldr, linux]
source: https://github.com/tldr-pages/tldr.git
---
# smbget
> `wget`-like utility for downloading files from SMB servers.
> More information: <https://www.samba.org/samba/docs/current/man-html/smbget.1.html>.
- Download a file from a server:
`smbget {{smb://server/share/file}}`
- Download a share or directory recursively:
`smbget --recursive {{smb://server/share}}`
- Connect with a username and password:
`smbget {{smb://server/share/file}} --user {{username%password}}`
- Require encrypted transfers:
`smbget {{smb://server/share/file}} --encrypt`