发布时间:2014-08-16 17:41:21
In Ubuntu Linux, the default prompt(AKA PS1) under xterm terminal mode is : 64 # If this is an xterm set the title to user@host:dir 65 case "$TERM" in 66 xterm*|rxvt*) 67 #PS1="\[\e]0;${debian_chroot:+($debian_chroot)}\u@\h: \w\a\]$PS1" 68 &nb.........【阅读全文】
发布时间:2014-08-13 17:33:01
#!/bin/bashecho $1awk 'BEGIN{ while( (getline line < "maclist") > 0){ mac[line] } RS="}" FS="\n"}/lease/{ for(i=1;i<=NF;i++){ gsub(";","",$i) &nb.........【阅读全文】
发布时间:2014-08-13 16:09:44
在做shell批处理程序时候,经常会涉及到字符串相关操作。有很多命令语句,如:awk,sed都可以做字符串各种操作。 其实shell内置一系列操作符号,可以达到类似效果,大家知道,使用内部操作符会省略启动外部程序等时间,因此速度会非常的快。 一、判断读取字符串值表达式.........【阅读全文】
发布时间:2014-08-11 10:39:46
URL=`svn info | grep URL | cut -c6- `printf $(echo -n $URL | sed 's/\\/\\\\/g;s/\(%\)\([0-9a-fA-F][0-9a-fA-F]\)/\\x\2/g')"\n"......【阅读全文】
发布时间:2014-07-31 17:03:38
Problem : root@ubuntu:~# apt-get upgrade Reading package lists... Done Building dependency tree Reading state information... Done You might want to run 'apt-get -f install' to corr.........【阅读全文】