help-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Opening a list of files in Emacs


From: Dieter Wilhelm
Subject: Re: Opening a list of files in Emacs
Date: Fri, 13 Oct 2006 23:37:20 +0200
User-agent: Gnus/5.11 (Gnus v5.11) Emacs/22.0.50 (gnu/linux)

"ChunYe Wang" <ext-chunye.wang@nokia.com> writes:

>> > I have a file containing a list of files (full-pathname), one per line.
>> > How do I open this list of files from Emacs? Is there a elisp package
>> > to do this?
>
>> venu.nayar@gmail.com writes:
>> 
>> M-x query-replace-regexp-eval <RET> 
>>     .* <RET> 
>       (format "(find-file %S)" (match-string 0)) <RET>
>> 
>> M-x eval-buffer

Another idea is:

M-x query-replace-regexp-eval <RET>
  .* <RET>
  (find-file-noselect \0)

or maybe just

cat file_list|xargs emacs  

-- 
    Best wishes

    H. Dieter Wilhelm
    Darmstadt, Germany




reply via email to

[Prev in Thread] Current Thread [Next in Thread]