I have a file in my Linux work computer that I need on my personal Mac laptop and I wanted to know how I could get that to my mac computer. I can't email it to myself because it's a dmg file and it's too large via email. How can I send this file to myself using terminal commands? Also I have no administrative capabilities so I can't use sudo
1 Answer 1
You can use rsync -avz --progress /path/to/file user@host:/path/to/destination or scp /path/to/file user@host:/path/to/destination
answered Aug 29, 2017 at 17:26
Hunter.S.Thompson
9,15577 gold badges2828 silver badges4141 bronze badges
- The Overflow Blog
-
-
- Featured on Meta
-
-
Related
Hot Network Questions
- Is there a loophole in Bell's theorem because of our ignorance of the state of the measurement device?
- Can military personnel disobey illegal orders under U.S. law?
- How to automatically refresh or reload Import CSV node data?
- Window length clarification - FIR Filter
- Minimum width to connect both side
- Origin of the Popular Distinction Between Morals and Ethics
- How to design a distributed system with an event broker where strong ordering is required?
- Proving an order relation between two concrete real numbers (Lean)
- Using the word “interwind”
- Why does the coefficient of a regressor increase with sample size when using poly() in lm() and glm()?
- Nullable warning when upgrading to extension-members syntax
- Three-cushion billiards challenge.
- Is the transfer principle useless?
- How can I clean unsealed concrete before installing flooring?
- Can you bypass PIN requirement of FIDO token protected LUKS device with hex editor?
- What do "spelling pronunciation" and "~" mean in Wiktionary?
- Could satellites be made to fly in a formation that creates a moving image when viewed from earth?
- How to test i.i.d. assumption?
- Vertical bars...or I mean...well, you'll get what I mean
- What is the correct definition of a limit point in real analysis?
- Is a consequence of waiving privilege for new representation that anyone can now access the privileged material?
- Do I have to transcribe all pronunciation details if I use the [] transcription?
- Can I delete the Chrome's OptGuideOnDeviceModel safely? It's taking up 4GB
- Would a variable mandatory-savings policy be an effective alternative to interest-rate hikes for reducing consumer demand?
scp?