Sometime i need to use curl
to download things from web as a developer here is a quick command if you forget it.
curl -o <outputfilename> <downloadlink>
download & extract with same command
curl -L <downloadfileurl> | tar zx
also if it is zip file that you are downloading, You can use below tar
command:
tar -xf archive.tar
Top comments (0)