#!/usr/bin/env perl -0777 -nsw
# --------------------------------------------------------------------------------
# Auth: Christopher Stone
# dCre: 2012/11/27 08:12
# dMod: 2021/04/19 21:36
# Task: Sort CC Script Segments for a Video.
# Tags: @ccstone, @Shell, @Script, @CC, @Sort, @Video
# --------------------------------------------------------------------------------
use v5.010;
s!^LOGGER\h*\d+\h*!!gim; # Remove “Logger ##” lines if necessary.
s!\A\s+|\s+\Z!!; # Remove leading and trailing vertical whitespace.
s!^\h+|\h+$!!gm; # Remove trailing whitespace on every line.
my @array = split(/\n\s+/, $_); # Split script segments into an array.
chomp(@array); # Remove trailing linefeeds from records.
@array = sort(@array); # Sort array.
$, = "\n\n"; # Set Output Field Separator.
print @array; # Print array.