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
- Minimum width to connect both side
- Why do metals burn you when they've been left outside in direct sunlight?
- What exactly is different about the slice of space and lightcone concept in special relativity?
- Expectation of an absolute value
- expl3: l3file: \iow_now:Ne... doesn't expand tokens before writing to the stream?
- When was the last time U.S. Congress overrode a president's veto?
- Can a Gazer using Telekinetic Ray throw a creature 30 feet up in the air?
- Fantasy story from F&SF Magazine about a djinn, and a sheik's descendants and nation becoming wealthy by water transforming into oil
- Cutting a Möbius strip in thirds. Why are the resulting strips interlinked?
- How to resize ext4 without adding more inodes?
- Dactylic Hexameter
- How do you time a Perfect Guard against a Guardian?
- Three-cushion billiards challenge.
- Can you store a summoning spell in a Glyph of Warding?
- Is there a loophole in Bell's theorem because of our ignorance of the state of the measurement device?
- How can I use sed to chain append lines from a text file, add it as a suffix to the text on the same lines numbers on another file, and so on?
- Do I have to transcribe all pronunciation details if I use the [] transcription?
- How can I cut a 56° bevel in 2x6 with a 10-inch mitre saw?
- PS Plus subscriber — Football Manager 2024 worked yesterday on PS5 but now says "This content is not available. To use this content, purchase it"
- Different CIs for the same linear mixed model emmeans, ggemmeans, ggpredict
- The state's miniscule security apparatus is already 'ruling' a large teeming populace, how much more barebones can we get?
- Which objects in a topos such as the étale topos are "classifying spaces" of their fundamental groups?
- How to design a distributed system with an event broker where strong ordering is required?
- Reacting calcium with acetic acid - safe to conduct in classroom environment?
scp?