Hi, I am on a Kali Linux 2019.1a 64-bit Live USB 128GB with Persistance. My normal OS is Windows 10 Pro. My question is...How do I patch Kali to allow larger wordlists? Bigger than rockyou? I have crackstation. I read to try this script below but I don't know where to put it. So how do I use large wordlists (15GB)? Here's the script. Please reply. Thanks

split -l MAX_LENGTH --additional-suffix=".lst" words.lst words_

for user in words_*.lst
do
for pass in words_*.lst
do
hydra [[options] ...] -L "${user}" -P "${pass}" [[args] ...]
done
done
rm -v words_*.lst