1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages/linux/smbclient.md

24 lines
636 B
Markdown
Raw Normal View History

2018-01-09 14:19:25 -06:00
# smbclient
> FTP-like client to access SMB/CIFS resources on servers.
- Connect to a share (user will be prompted for password; `exit` to quit the session):
2018-01-09 14:19:25 -06:00
`smbclient {{//server/share}}`
- Connect with a different username:
`smbclient {{//server/share}} --user {{username}}`
2018-01-09 14:19:25 -06:00
- Connect with a username and password:
`smbclient {{//server/share}} --user {{username%password}}`
- Download a file from the server:
`smbclient {{//server/share}} --directory {{path/to/folder}} --command "get {{file.txt}}"`
- Upload a file to the server:
`smbclient {{//server/share}} --directory {{path/to/folder}} --command "put {{file.txt}}"`