The same is the case from the command line. There are two commands for moving and copying: mv and cp.The first does the same as dragging a file to a new location on the same hard disk; the second. I just made a.c file and compiled it with gcc in the terminal on OS X 10.8.2. My syntax was gcc -o and that was fine. Now I see I have an executable and file tells me as such, but I'm not sure how to actually run it beside double clicking the icon, /lame. Use Mac OS X Terminal to copy files from remote computer to my desktop. Ask Question Asked 5 years, 11 months ago. Active 5 years, 11 months ago. Viewed 4k times 0. I'm trying to copy a file from a remote computer to my local desktop. Learn how to use terminal emulator, send command line commands from Commander One window and maintain your files like a pro. Get the advanced file manager for Mac and fully maintain your file structure and system processes with the built-in Mac Terminal emulator.
Since macOS is based on Unix there are a number of ways to compress files and folders within the filing system using Unix based application code, below are a few options using the Terminal or command line interface (cli). The default command line application interface in macOS is the Terminal and is stored in /Applications/Utilities.
Mac Terminal Move File
File and folder compression saves on file size and ensures the contents are captured and delivered or stored as one monolithic file. A compressed file which contains files and folders is generally referred to as an archive. Here are some built-in compression applications you can use including zip, tar, gz, bz2, gz and dmg.
ZIP – Cross Platform
First up is ZIP one of the most commonly used compression techniques used across all platforms
To compress
To extract
If you want to make a zip without those invisible Mac resource files such as “_MACOSX” or “._Filename” and .ds store files, use the “-X” option in the command so:
TAR.GZ – Cross Platform
Second up is TAR, an old favorite on Unix/Linux – you add the GZ for the compression – compresses tighter than zip
To compress
To extract
TAR.BZ2 – Cross Platform
A variation on TAR GZ but with better compression than both tar.gz and zip.
To compress
To extract
GZ
Without the tar
To extract
DMG – macOS Only
This one is macOSnative only – for a GUI interface use /Applications/Utilities/Disk Utility – for command line use:
To create
To mount
To view
To Eject
You can also use a number of different formats for creating a .dmg
- UDZO – Compressed image (default)
- UDRO – Read-only image
- UDBZ – Better compressed image
- UDRW – Read/Write image
- UDTO – DVD disk image
That’s the low down, the more common compression packages available will typically be covered in one of the above.
Terminal User Guide
In Terminal, you can move and copy files locally or remotely using the mv
, cp
, and scp
command-line tools.
Tip: It’s easier to move and copy files using the Finder. See Organize files in folders.
Mac Os Download File From Terminal Download
Move a file or folder locally
In the Terminal app on your Mac, use the
mv
command to move files or folders from one location to another on the same computer. Themv
command moves the file or folder from its old location and puts it in the new location.For example, to move a file from your Downloads folder to a Work folder in your Documents folder:
% mv ~/Downloads/MyFile.txt ~/Documents/Work/MyFile.txt
You can also change the name of the file as it’s moved:
% mv ~/Downloads/MyFile.txt ~/Documents/Work/NewFileName.txt
See the mv command man page.
Copy a file or folder locally
In the Terminal app on your Mac, use the
cp
command to make a copy of a file.For example, to copy a folder named Expenses in your Documents folder to another volume named Data:
% cp -R ~/Documents/Expenses /Volumes/Data/Expenses
The
-R
flag causescp
to copy the folder and its contents. Note that the folder name does not end with a slash, which would change howcp
copies the folder.
See the cp command man page.
Copy a file or folder remotely
Mac Os X Download File From Terminal
In the Terminal app on your Mac, use the
scp
command to copy a file or folder to or from a remote computer.scp
uses the same underlying protocols asssh
.For example, to copy a compressed file from your home folder to another user’s home folder on a remote server:
% scp -E ~/ImportantPapers.tgz username@remoteserver.com:/Users/username/Desktop/ImportantPapers.tgz
You’re prompted for the user’s password.
The
-E
flag preserves extended attributes, resource forks, and ACL information.The
-r
flag, which isn’t used in this example, causesscp
to copy a folder and its contents.
See the scp command man page.