Are you still using scp to copy files? Use rsync instead! It can resume an interrupted transfer!
We all have used scp to transfer files. We all have cursed at the moment that the transfer got interrupted in the middle of the transfer or……
# Linux, Devops, Scripting, Cats and various things come to my mind
We all have used scp to transfer files. We all have cursed at the moment that the transfer got interrupted in the middle of the transfer or……
Recently a friend of mine had a problem; he wanted to download a file only if the file on the web server was newer than the already……
Wouldn't it be nice if there was a tool to resume a lost ssh connection? Wouldn’t it be great if you could go back in time and not start a……
In this article, we will continue discussing curl and how to use the PATCH and PUT methods in order to update data. Here are a few examples……
In this article, we will continue discussing curl and how to use the DELETE method, an HTTP DELETE request to a server to remove data. Here……
In this article, we will continue discussing curl, and how to use the POST method, an HTTP POST request is used to submit data to a server……
The curl command is a powerful tool for transferring data to and from servers using a variety of protocols, including HTTP, HTTPS, FTP, and……
Recently I had to deal with old “sins”, I had some scripts that did not behave very well and potentially leave empty directories on the……
test command is convenient; it can verify if a filename is a file or a directory and many other things, but it can also make age……
More often than you will need to verify in your scripts whether a file or directory exists or not. To do this, you can use the test……