Differences
This shows you the differences between two versions of the page.
| Both sides previous revision Previous revision Next revision | Previous revision | ||
| linux:file_operations [2019/01/04 20:47] – [Find Directories Containing Specified File Glob] mgupton | linux:file_operations [2022/08/19 19:26] (current) – [Mount CIFS/SMB Share] mgupton | ||
|---|---|---|---|
| Line 29: | Line 29: | ||
| find ./ -maxdepth 1 -mtime -7 -type d | find ./ -maxdepth 1 -mtime -7 -type d | ||
| </ | </ | ||
| + | |||
| + | <code bash> | ||
| + | find ./ -maxdepth 1 -type d -mtime -7 | xargs -I {} ls -dhl {} | ||
| + | </ | ||
| + | |||
| + | ===== Mount CIFS/SMB Share ===== | ||
| + | <code bash> | ||
| + | sudo mount -t cifs -o username=admin, | ||
| + | </ | ||
| + | |||