Lu_ Posted March 11, 2014 Share Posted March 11, 2014 I am completely in the dark here. Say, how do I extract all .bam files whose names start with an 'I?' In MS DOS the whole bunch is described as I*.bam. What's the respective COPY_EXISTING command? Link to comment
Ardanis Posted March 11, 2014 Share Posted March 11, 2014 COPY_EXISTING_REGEXP GLOB ~I.*\.bam~ override Link to comment
Lu_ Posted March 11, 2014 Author Share Posted March 11, 2014 Thanx, Ardanis. And if I wanted to extract all .bam files at once, then? edit> I mean ALL, no matter what the name is Link to comment
Mike1072 Posted March 11, 2014 Share Posted March 11, 2014 Thanx, Ardanis. And if I wanted to extract all .bam files at once, then? edit> I mean ALL, no matter what the name is ~.+\.bam~ . any character * 0 or more of previous + 1 or more of previous \ escape special character So, ~I.*\.bam~ is an I followed by 0 or more copies of "any character" and then a period and the letters bam. ~.+\.bam~ is 1 or more copies of "any character" followed by a period and the letters bam. Link to comment
Recommended Posts
Archived
This topic is now archived and is closed to further replies.