This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Based on: http://stackoverflow.com/questions/2218075/using-git-with-your-cakephp-project | |
# Procedure: | |
# 1. Remove tmp/ from .gitignore | |
# 2. touch tmp/.keep | |
# 3. git add tmp/.keep | |
# 4. git commit | |
# 5. Add tmp/ to .gitignore | |
# Clean tmpfiles and delete .gitignore |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/perl | |
use strict; | |
use warnings; | |
use Getopt::Long qw(:config no_ignore_case ); | |
my $replace = undef; | |
my $delete = undef; | |
my $help = 0; | |
GetOptions ( |