To list the contents of the card, first cd /Volumes/<card name>
- in this case cd /Volumes/phone\ card
(the \
escapes the space). Then you can do ls -al
to list the files (hidden and visible) on the card.
If you want to copy files to somewhere else on the drive, you can use cp
. For example, to copy files to your home directory, cp <some file> ~
(or to copy everything, cp -R ./* ~
, where * means "match any character(s)" and ~ is short for your home directory (I don't remember the OS X default directory hierarchy). -R
means copy directories recursively (if cp encounters a directory, it should copy the contents of the directory as well).
man cp
will tell you more about cp (or any other command).
cd
to the card and thenls -al
? (I don't know if OSX has 'hidden' files - on Linux and BSD, a file is hidden if the filename starts with a '.' character.) – user55325 – 2012-03-12T02:36:53.533my card name is "phone card" but cd "phone card" does not work – hk_ – 2012-03-12T02:58:57.257
4You have to be in the directory where the OS mounts it - in OS X it's probably
/Volumes
, so you would need tocd "/Volumes/phone card"
(orcd /Volumes/phone\ card
). – user55325 – 2012-03-12T03:10:07.657@user55325, that works, you can post it as answer. And extra help would be, how do I copy files from my SD card to my mac drive, lesser say documents folder. Thanks – hk_ – 2012-03-12T04:58:17.170