introduce curl command
Recently I used curl command a lot in several Continuous Integration projects. I wrote this post to summarize a few commonly-used options. -s This option […]
Read More →Recently I used curl command a lot in several Continuous Integration projects. I wrote this post to summarize a few commonly-used options. -s This option […]
Read More →I used Ubuntu Linux as development environment heavily in my daily work. It took me some time to find some useful tools. In this post, […]
Read More →Usually in Bash scripting, we define a variable by giving it a name. and reference it later by using that name in the form of […]
Read More →apt or apt-get is widely used as the package manager in Debian Linux and its downstream Linux distribution, such as Ubuntu. There are a lot […]
Read More →The traditional ifconfig command can show the statistics about transferred and received packages on any network interface card in Linux. However, ifconfig command has been […]
Read More →iptables is widely used in Linux to manipulate network packets. There are a lot of blog posts about its usage. I also recommend one here: […]
Read More →The below option can be set to prevent vim from add a newline at the end of a file :set nofixendofline This option is useful […]
Read More →The software package for Intellij Idea community version is a self-contained standalone package, which can be run by executing the idea.sh script under the bin […]
Read More →I post a few curl command example for future reference curl -f –create-dirs -o /path/to/local/file http://foo.com/path/to/remote/file -f: fail silently on server errors. –create-dirs: create missing […]
Read More →Recently I encountered a situation, in which I need to list open files under a directory. I searched the quick start tutorials of lsof command […]
Read More →