Hi guy

  • 0 Posts
  • 58 Comments
Joined 2 years ago
cake
Cake day: June 12th, 2023

help-circle






  • It’s unfortunate that bolding doesn’t really stand out on here (at least on jerboa).

    I’ve posted and shared that excerpt about the white moderate, aka, the centrist, the fence sitter, the ‘I don’t want to take sides’/‘I don’t know enough to do something’/‘I don’t want to know’, people. (Am white, not moderate, yet surrounded by every type mentioned)

    It is truly amazing and infuriating how so many people are content with being complacent and apathetic.

    Sometimes, I truly hate this world.




  • He’s saying the enemy is within and must be wiped out completely.

    Recursively and forcefully remove virus at Localhost.

    Just sent to a friend and I broke it down like this

    The commands wouldn’t work on Linux/Unix due to the format. But… They don’t need to if you’re just sending a message.

    127.0.0.1 means the local machine. The host.

    rm is remove. -r is recursively. -f means use force if necessary.

    The commands, when put together, would look something like this:

    traceroute wokemindvirus (find the location of and path to the virus)

    The virus has been located at localhost (internally)

    rm -rf /127.0.0.1/wokemindvirus

    Remove, forcefully and recursively until nothing is left, the woke virus, in the local host - USA.

    In other words, the enemy within must be wiped out.

    Tell me I’m crazy.



  • https://www.man7.org/linux/man-pages/man1/bash.1.html

    Lists A list is a sequence of one or more pipelines separated by one of the operators ;, &, &&, or ||, and optionally terminated by one of ;, &, or <newline>.

       Of these list operators, && and || have equal precedence, followed by ; and &, which have equal precedence.
    
       A sequence of one or more newlines may appear in a list instead of a semicolon to delimit commands.
    
       ....
    
       AND and OR lists are sequences of one or more pipelines separated by the && and || control operators, respectively.  AND and OR lists are executed with left associativity.  An AND list has the form
    
              command1 && command2
    
       **command2 is executed if, and only if, command1 returns an exit status of zero (success).**
    

    So, command 1 returns success, but command 2 fails. The FAILED comment at the beginning of the error message is the message to parse, one part succeeded, the other failed.

    Not using && and running your command by line will show where the error is.