batch import

I did a search on the forums for "batch import" and came up empty, so forgive me if this post is redundant. I have a bunch of .ris files that I would like to import without having to do it one at a time. Is this possible and if not, I think it would be a nice feature.

Thanks
  • There isn't yet a way to this that I know of. For the specific case of RIS, you can just concatinate the files together. One way to do this is to put all of this in the same directory, open a command prompt, change to that directory, 'mkdir temp' & then on windows:

    type *.ris > temp/merged.ris

    Or on OS X/Linux:

    cat *.ris > temp/merged.ris
  • thanks! that does seem to work.
Sign In or Register to comment.