This is italic text.
This is bolded text.
This is italic and bolded text.
[This is a reference link.][reference]
| gnome-terminal --tab -e "bash -c 'date; exec bash -i'" --tab-with-profile=Unnamed -e "bash -c 'ls -al /usr/bin; exec bash -i'" --tab-with-profile=Unnamed -e "bash -c 'java -version; exec bash -i'" |
| # disable xon/xoff so that search forward works | |
| [[ $- == *i* ]] && stty -ixon |
| gradle build --continuous | |
| gradle tasks | |
| lb-update |
This is italic text.
This is bolded text.
This is italic and bolded text.
[This is a reference link.][reference]
| $ sudo yum install epel-release.noarch | |
| $ sudo yum install xclip |
| Create a file called /etc/yum.repos.d/google-chrome.repo and add the following lines of code to it. | |
| [google-chrome] | |
| name=google-chrome | |
| baseurl=http://dl.google.com/linux/chrome/rpm/stable/$basearch | |
| enabled=1 | |
| gpgcheck=1 | |
| gpgkey=https://dl-ssl.google.com/linux/linux_signing_key.pub | |
| # yum info google-chrome-stable |
| # Install tmux on Centos release 6.5 or 7.2 | |
| # install deps | |
| yum install gcc kernel-devel make ncurses-devel | |
| # DOWNLOAD SOURCES FOR LIBEVENT AND MAKE AND INSTALL | |
| curl -OL https://github.com/libevent/libevent/releases/download/release-2.0.22-stable/libevent-2.0.22-stable.tar.gz | |
| tar -xvzf libevent-2.0.22-stable.tar.gz | |
| cd libevent-2.0.22-stable | |
| ./configure --prefix=/usr/local |