How do you duplicate a file in XCode?

前端 未结 7 1201
名媛妹妹
名媛妹妹 2021-02-05 00:18

Anyone know a good solution?

So far I have not found a better way than using File>New file and then copying contents from old file to new.

You can probably dupli

7条回答
  •  余生分开走
    2021-02-05 00:45

    I use the following perl script to duplicate a file pair in the Terminal. You give it the base name of the original and new file, and it copies the header and implementation (c/cpp/m/mm) file, then replaces all occurances of the base name with the new name, then adds them to subversion. You still have to add the new files in to Xcode and adjust the creation date in the comment (I've got a Keyboard Maestro macro for that), but its quicker than doing a lot of the steps manually. I operate with a Terminal window and four tabs pre-set to the Project, Source, Resources, and English.lproj directory which gives quick access for a lot of operations.

    #!/usr/bin/perl
    
    use lib "$ENV{HOME}/perl";
    use warnings;
    use strict;
    
    our $cp = '/bin/cp';
    our $svn = '/usr/bin/svn';
    our $perl = '/usr/bin/perl';
    
    our $source = shift;
    our $add = 1;
    if ( $source =~ m!^-! ) {
        if ( $source eq '-a' || $source eq '--add' ) {
            $add = 1;
            $source = shift;
        } elsif ( $source eq '-A' || $source eq '--noadd' ) {
            $add = undef;
            $source = shift;
        } else {
            die "Bad arg $source";
        }
    }
    our $dest = shift;
    
    die "Bad source $source" unless $source =~ m!^(.*/)?[A-Za-z0-9]+$!;
    die "Bad dest $dest" unless $dest =~ m!^(.*/)?[A-Za-z0-9]+$!;
    my $cpp;
    $cpp = 'c' if ( -e "$source.c" );
    $cpp = 'cpp' if ( -e "$source.cpp" );
    $cpp = 'mm' if ( -e "$source.mm" );
    $cpp = 'm' if ( -e "$source.m" );
    die "Missing source $source" unless -e "$source.h" && -e "$source.$cpp";
    die "Existing dest $dest" if -e "$dest.h" && -e "$dest.$cpp";
    
    our $sourcename = $source; $sourcename =~ s!.*/!!;
    our $destname = $dest; $destname =~ s!.*/!!;
    
    print "cp $source.h $dest.h\n";
    system( $cp, "$source.h", "$dest.h" );
    print "s/$sourcename/$destname in $dest.h\n";
    system( $perl, '-p', '-i', '-e', "s/$sourcename/$destname/g", "$dest.h" );
    
    print "cp $source.$cpp $dest.$cpp\n";
    system( $cp, "$source.$cpp", "$dest.$cpp" );
    print "s/$sourcename/$destname in $dest.$cpp\n";
    system( $perl, '-p', '-i', '-e', "s/$sourcename/$destname/g", "$dest.$cpp" );
    
    if ( $add ) {
        print "svn add $dest.$cpp $dest.h\n";
        system( $svn, 'add', "$dest.$cpp", "$dest.h" );
    }
    

提交回复
热议问题