This file contains 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
#!/bin/bash -e | |
# /opt/scripts/svn-cat-tag-versions.sh | |
# @author: Nestor Urquiza | |
# @date: 20140319 | |
USAGE="Usage: `basename $0` <tag_base_url> <file_path> <version_from> <version_to>" | |
if [ $# -ne "4" ] | |
then | |
echo $USAGE | |
exit 1 | |
fi | |
tag_base_url=$1 | |
file_path=$2 | |
version_from=$3 | |
version_to=$4 | |
# one liner | |
svn ls $tag_base_url | \ | |
sort -t . -k 1,1 -k 2,2n -k 3,3n | \ | |
grep -A 1000000 "$version_from" | \ | |
grep -B 1000000 "$version_to" | \ | |
while read version ; do echo "/*****$version*****/"; svn cat $tag_base_url/$version/$file_path; echo; done |
Here is how the scripts invocation looks for a sql migration script:
$ ./svn-cat-tag-versions.sh \ http://subversion.sample.com/path/to/sample-core/tags \ src/main/resources/db/migration.sql sample-core-2.56.1 \ sample-core-2.58 /*****sample-core-2.56.1/*****/ ALTER TABLE contact DROP COLUMN email; ALTER TABLE contact DROP COLUMN email_notification; ALTER TABLE contact ADD COLUMN email_notification BIT(1) NOT NULL AFTER VERSION; /*****sample-core-2.57/*****/ ALTER TABLE contact DROP COLUMN notification; /*****sample-core-2.58/*****/Note there was nothing to do as part of 2.58 release and yet the script presents the record making sure it is explicit that there is nothing to do for it.
No comments:
Post a Comment