Ruby and Perl are other popular languages that can also be used to transfer files. These two programming languages also support running one-liners from an operating system command line using the option -e.

Ruby - Download a File

ruby -e 'require "net/http"; File.write("LinEnum.sh", Net::HTTP.get(URI.parse("<https://raw.githubusercontent.com/LinEnum.sh>")))'

Perl - Download a File

perl -e 'use LWP::Simple; getstore("<https://raw.githubusercontent.com/LinEnum.sh>", "LinEnum.sh");'