-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathCS-ExpandQueries-MASTER.pl
35 lines (26 loc) · 1.03 KB
/
CS-ExpandQueries-MASTER.pl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#!/usr/bin/perl
use warnings;
use strict;
binmode(STDOUT, ":utf8");
### DO NOT INCLUDE
use ColdStartLib;
### DO INCLUDE
#####################################################################################
# This program converts from LDC’s original queries containing multiple entry points,
# to multiple queries that can be distributed to CSSF teams.
#
# Author: James Mayfield
# Please send questions or comments to jamesmayfield "at" gmail "dot" com
#
# For usage, run with no arguments
#####################################################################################
my $version = "1.3";
print STDERR "CS-ExpandQueries.pl has been superseded by CS-ValidateQueries.pl\n";
################################################################################
# Revision History
################################################################################
# 1.0 - Initial version
# 1.1 - Modified to obfuscate the relationships among queries
# 1.2 - Added type match checking
# 1.3 - Replaced functionality by CS-ValidateQueries.pl
1;