12-11-2018, 04:38 PM
Autocorrect is a funny thing. Thank god I never use it.
My command just imitated the command from freevps.us. The freevps.us command downloads the script into stdin (standard data in stream - basically RAM while the file is being written to the disk) and runs it from there. After that the script is gone because it was never written to disk. So I just made the chain of commands I posted above that does almost the same with the difference that the file is written to the disk in order to run it via bash with options and then it is deleted at the end.
The | pipe in the freevps.us command simply passes the stdin to bash and bash runs it.
My command just imitated the command from freevps.us. The freevps.us command downloads the script into stdin (standard data in stream - basically RAM while the file is being written to the disk) and runs it from there. After that the script is gone because it was never written to disk. So I just made the chain of commands I posted above that does almost the same with the difference that the file is written to the disk in order to run it via bash with options and then it is deleted at the end.
The | pipe in the freevps.us command simply passes the stdin to bash and bash runs it.