1 2 3 $ echo "1a2b3a" | awk -F 'a|b' '{print $1 " " $2 " " $3}' 1 2 3
1 2 3
$ echo "1a2b3a" | awk -F 'a|b' '{print $1 " " $2 " " $3}' 1 2 3
linux use comm command to find common lines
linux configure ulimit
Checkout code from svn 1 $ svn co --non-interactive --no-auth-cache --username SVN_USER_NAME --password SVN_PASSWORD http://svnserver.domain.com:8080/svn/test_repos/trunk/svn-commands-test . ...
create a file with duplicate records 1 2 3 4 5 6 7 8 9 10 11 $ echo "test" > space.txt $ echo " test" >> space.txt $ echo " test " >> space.txt $ echo "test " >> space....
I use Linux Mint as my default OS. I use jboss and apache for my development. But I don’t enjoy using default start up and shut down scripts since their process gets attached to the terminal I us...