From the following partial mirrors (2 link levels) you can read the latest rt.com news:
- Asia: REMOVED NOT WORKING ANYMORE
- USA: REMOVED NOT WORKING ANYMORE
You can make your own mirror easily using wget. Here are the command line parameters for creating mirrors such as the ones above:
Code: Select all
wget -r -l 2 --no-remove-listing -kxKE --no-host-directories --referer REMOVED NOT WORKING ANYMORE --random-wait --wait 1 -e robots=off -t 5 https://www.rt.com/
Here is a shell script for GNU/Linux that is also checking whether the mirror is already running before starting to update it. You need to replace CAPITALIZED code with your own settings.
Code: Select all
#!/bin/sh
another_instance()
{
exit 1
}
if [ "$(pgrep THENAMEOFYOURSCRIPT.sh)" != $$ ]; then
another_instance
fi
cd YOUR_WEBROOT_DIRECTORY
wget -r -l 2 --no-remove-listing -kxKEq --no-host-directories --referer YOUR_MIRROR_SITE --random-wait --wait 1 -e robots=off -t 5 https://www.rt.com/