Robert Stover wrote:
When you say <source> is that just the name of the hardrive I'm pulling from "New 250" or is the down to the file level... <New 250>users>documents>tcpa-report.doc>
Terminal requires complete file paths in the UNIX style, using slashes between parts of the path. The root of all paths for files on mounted volumes is "Volumes" but if that is omitted the path defaults to the startup volume. Spaces separate command parts, so you must also "escape" spaces that appear in path names or they will be interpreted as command part separators. To escape a character, either precede it with a backslash ("") or enclose the entire part of the path in quotes.
So, assuming "New 250" is not the startup (boot) volume, the UNIX style path to "tcpa-report" would be:
/Volumes/New 250/Users/Documents/tcpa-report.doc
If "New 250" is the boot drive, you could also use:
/Users/Documents/tcpa-report.doc
Fortunately, you don't have to remember any of this if you use the drag & drop capabilities of Terminal. Type the command up to the place where you need to enter a path (including typing the space just before it). Then drag the item whose path you need from the Finder into the Terminal window & drop it there. The path will automatically be formatted, including any escaping needed.
If you need to follow one path with another, just type the single space that must separate them & drag the other file path into the window. Obviously, if the second path doesn't exist yet, you can't do this but you can drag the enclosing item into the window & type the final part of the path yourself. You can also use copy & paste within Terminal: copy by dragging across text with the pointer to highlight it, copy, then paste at the cursor.