• sudo rm -rf /*

    What it actually equals

    sudo = run as root (power to do everything)

    rm = remove
    -rf = recursive (all sub directories and files), force (no comfirmation)

    /* = root directory, and everything in it, so every file on your system

    Basically it is a command to delete every file on your system, with no checks or confirmation.

    I thought it'd be something like that.
    Serves anyone who does it right!

About

Avatar for M_V @M_V started