remove ignore file to add submodule
[dotfiles.git] / zsh / plugins / git_install.pl
1 #!/usr/bin/perl -w
2 #
3 #
4 my @git_lists = qw {
5     git://github.com/zsh-users/zsh-syntax-highlighting.git
6 };
7 #my $filename = "git_lists";
8
9 print $git_lists[0];
10
11 `git clone $_` foreach @git_lists;
12
13 ##open FILE, "$filename";
14 ##while (<FILE>){
15 ##      chomp;
16 ##      my ($name, $url) = split;
17 ##      $hash{$name} = $url;
18 ##}
19 ##close FILE;
20 ##
21 ##foreach (values %hash) {
22 ##      system "git clone " . $_;
23 ##}