分类:
2010-07-21 10:55:52
从 会随机的显示一条脚本技巧.
把下面的内容放到bashrc中,运行shellfu即可,enjoy!
shellfu(){ curl -s "" | sed -e 's/-e 's/<\/div>/\n<\/div>\n/g' | sed -n -e "//,/<\/div>/p" | lynx -stdin -dump -nolist; }
运行效果:#shellfu The commmands below show the ten largest files/dirs in the working directory. Both commands give similar results, though handle things slightly differently. The 'du' option is good if you also need sizes of subdirectories, but the 'ls' option gives more detail. ls -laSh | head -10 du -s * | sort -nr | head -10 I find both to be useful in situations where I need to make more free space.