Download Subjects only
Brought to you by:
akos
I often like to download subjects only, parse them, then run brag to download the files I'm looking for. I have modded my brag "binary" file so when I type brag -S, it downloads subjects, and exits. Here is the diff of my brag, to the original brag (version 1.4.1-1)
#diff brag.orig brag
328a329
> variable onlySubjects 0 ;# Don't stop after getting subjects
441a443
> variable onlySubjects
462a465,467
> "-S" {
> set onlySubjects 1
> }
938a944
> variable onlySubjects
950a957,961
> # If onlySubjects, then exit
> if { $onlySubjects == "1" } {
> exit 0
> }
>
-Ben