Upload files to a FTP server using curl
How to upload files to a FTP server using curl A simple tip for anyone, uploading files using the curl command line tool. curl -T filename.ext -u username:password ftp://ftpserver.com The…
How to upload files to a FTP server using curl A simple tip for anyone, uploading files using the curl command line tool. curl -T filename.ext -u username:password ftp://ftpserver.com The…
SSHMenu is a panel applet for GNMOME (I have been informed it can be used outside of GNOME as well) that keeps track of all your regular SSH connections and…
I’ve experienced many instances where the Auto-update feature in WordPress fails to update either a plugin or WordPress itself. One solution to this problem is remarkably simple, and hopefully will…
Do you have a list of countries that you want to block access to your site? Have you tried adding IP numbers into your .htaccess file only to generate a…
Disable PDF protection using two simple commands in Ubuntu Use two simple commands to convert a protected pdf into an unprotected pdf. Here in this example i assume the protected…
Send standard error and standard out to the same file This article may seem odd to those who have read a few of my others. However, this is by far…
time curl -s "http://g33kinfo.com?[1-1000]" real 0m0.017s user 0m0.006s sys 0m0.006s and another one from bashcurescancer/com #!/bin/bash # Author: see http://bashcurescancer.com/improve-this-script-win-100-dollars.html # Modified and extended by "Chris F.A. Johnson" , 2007-02-25…