![[Linux File Transfers#Bash Download]]
### SMB Commands
```shell
sudo mkdir /mnt/Finance
```
```shell
sudo mount -t cifs -o username=plaintext,password=Password123,domain=. //192.168.220.129/Finance /mnt/Finance
```
```shell
mount -t cifs //192.168.220.129/Finance /mnt/Finance -o credentials=/path/credentialfile
```
```shell
find /mnt/Finance/ -name *cred*
```
```shell
grep -rn /mnt/Finance/ -ie cred
```
#### CredentialFile
```txt
username=plaintext
password=Password123
domain=.
```