Can someone please tell me how to combine multiple text files into something like a pages, word or text edit document?
please help me asap
please help me asap
What do you mean by that? You can copy/paste..but can you be specific about formats and what you mean by combining?elisha cuthbert said:Can someone please tell me how to combine multiple text files into something like a pages, word or text edit document?
please help me asap
elisha cuthbert said:Can someone please tell me how to combine multiple text files into something like a pages, word or text edit document?
please help me asap
janey said:What do you mean by that? You can copy/paste..but can you be specific about formats and what you mean by combining?
yeah, but are they all plaintext files that you want all in one without formatting, or what?elisha cuthbert said:formats .wrd,.pages,.rtf,.txt
combining: the act of combining things to form one thing
and i was thinking more of doing it without going through copy/paste 4 dozen times
janey said:yeah, but are they all plaintext files that you want all in one without formatting, or what?
if they're all text files that need to be dumped into one, you can open Terminal.app and type in "cat " (with a space after) and drag/drop all the files in there, and add " > /Users/username/place/to/put/file/filename.txt" to the end, replace username and /place/to/put/file/filename.txt with the appropriate names, and it'll dump it all together for ya.
However, the above does not work if they're not plain text files (.txt), as .doc and the other formats have some extra padding (info about the document) that cant be all jammed together like that.
well the one big downside to that is that you don't get any formatting with regular plain text files. it certainly is easy, but make sure you have newlines at the end so all the text doesn't get smushed together, likeelisha cuthbert said:Ok thanks heaps for that, they are all in rtf format but ill start using txt so i can use terminal for it cause it sounds easy ( and ive always wanted a reason to have terminal in my dock)
janey said:well the one big downside to that is that you don't get any formatting with regular plain text files. it certainly is easy, but make sure you have newlines at the end so all the text doesn't get smushed together, like
"This is the end of one file.This is the start of another file".
yeah, but are they all plaintext files that you want all in one without formatting, or what?
if they're all text files that need to be dumped into one, you can open Terminal.app and type in "cat " (with a space after) and drag/drop all the files in there, and add " > /Users/username/place/to/put/file/filename.txt" to the end, replace username and /place/to/put/file/filename.txt with the appropriate names, and it'll dump it all together for ya.
However, the above does not work if they're not plain text files (.txt), as .doc and the other formats have some extra padding (info about the document) that cant be all jammed together like that.