One Tips for the Loading Order of Environment Files

loading order which? who? when? 1 /etc/enviroment system once 2 /etc/profile (& /etc/profile.d/*) all users once 3 ~/.bash_profile | ~/.bash_login | ~/.profile you once 4 ~/.bashrc you each time 5 /et… Continue reading
Posted in Linux| Tagged , | Leave a comment

Shell – MySQL Query

[codesyntax lang="bash" lines="no" container="pre" tab_width="4"] #!/bin/bash # configs host='localhost'; user='kim'; pass='xxxxxx'; database='test_database'; # select from database query=`mysql -h$ho… Continue reading
Posted in Linux| Tagged , | Leave a comment

Shell – count the keyword

[codesyntax lang="bash" lines="no" container="pre" tab_width="4"] #!/bin/bash # perhaps the field to be analyted is the 2nd field log=/path/to/log; keyword=”the keyword”; cat $log | cut -f2 | grep $ke… Continue reading
Posted in Linux| Tagged | Leave a comment