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
- Looking for a book for teenagers involving heaven and hell
- Window length clarification - FIR Filter
- Different CIs for the same linear mixed model emmeans, ggemmeans, ggpredict
- What's the point of "I shan’t try to hit two balls" joke?
- Grace note vs swing
- Why do interpretations of quantum phenomena focus on QM rather than QFT?
- Reacting calcium with acetic acid - safe to conduct in classroom environment?
- Can a Gazer using Telekinetic Ray throw a creature 30 feet up in the air?
- How to design a distributed system with an event broker where strong ordering is required?
- Substitute patterns with values from lists
- Can you bypass PIN requirement of FIDO token protected LUKS device with hex editor?
- Is 1971 minimum wage "in silver quarters" far, far higher than the current minimum wage?
- Do blueshifted and redshifted light sources have differing energies?
- Compact operators in Hilbert space
- What exactly is different about the slice of space and lightcone concept in special relativity?
- Simplify into reduced form
- Why doesn't an aircraft turn when rolling on a point?
- Multiple comparisons with uncertain number of tests
- Can/will Ubers cross Schengen borders in the EU?
- Proper antonym of "body shaming"
- What is the difference between contactless Apple Pay and contactless card?
- Why does crontab use a wrong editor?
- Quilt of many colours
- Optimizing real-time ASCII playback in Python when each frame is fetched as a PNG via GET
scp?