<script language="JavaScript"> window.onload = function() { var Table=document.getElementById("table1"); var s = Table.rows.length; for (var i=1;i<s;i++) Table.rows[i].bgColor=i%2?"":"#e3e3e3"; } </scrip
# Ubuntu终端下命令行颜色配置 ## Parses out the branch name from .git/HEAD: find_git_branch () { local dir=. head until [ "$dir" -ef / ]; do if [ -f "$dir/.git/HEAD" ]; then head=$(< "$dir/.git/HEAD") if [[ $head = ref:\ refs/heads/*