Data transfer with curl
Posted in

Data transfer with curl

Welcome to the next pikoTutorial! Short for “Client URL,” curl is a command-line tool and library for transferring data with URLs. It supports various protocols, including HTTP, HTTPS, FTP, FTPS, SCP, SFTP, LDAP, and more. Basic usage At its core, curl allows you to fetch content from or send content…

Data transfer with curl Read More
Linux and hash command
Posted in

Linux and hash command

Welcome to the next pikoTutorial! What is hash? The hash command in Linux is a built-in shell utility used to optimize the execution of commands by recording paths of the invoked commands, so subsequent executions don’t need to search through the PATH variable again. You can see it in action…

Linux and hash command Read More
How to use xargs on Linux?
Posted in

How to use xargs on Linux?

Welcome to the next pikoTutorial! xargs reads items from standard input, delimited by blanks or newlines and executes the specified command with those items as arguments. Basic usage The most basic pattern of using xargs commands consists of 4 elements: Examples Create files basing on a text file Let’s assume…

How to use xargs on Linux? Read More