From 120587d98d5e82b9e4e158fb8dbb1054578e0b7e Mon Sep 17 00:00:00 2001 From: Kuba Date: Thu, 16 Mar 2023 00:07:03 +0100 Subject: [PATCH] Small script correction --- wiki.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wiki.sh b/wiki.sh index ab75603..0899e49 100755 --- a/wiki.sh +++ b/wiki.sh @@ -1,7 +1,7 @@ #!/bin/bash # Download the latest Wikipedia dump file -#wget https://dumps.wikimedia.org/enwiki/latest/enwiki-latest-pages-articles.xml.bz2 +wget https://dumps.wikimedia.org/enwiki/latest/enwiki-latest-pages-articles.xml.bz2 # Extract the text from the dump file using native Bash commands bzcat enwiki-latest-pages-articles.xml.bz2 | \ @@ -14,4 +14,4 @@ bzcat enwiki-latest-pages-articles.xml.bz2 | \ enwiki-latest-corpus.txt # Clean up -#rm enwiki-latest-pages-articles.xml.bz2 +rm enwiki-latest-pages-articles.xml.bz2