RSS shell-fu
哪吒推荐该订阅
原站:http://www.shell-fu.org
点击立即订阅,“shell-fu”的内容有更新,哪吒第一时间提醒您
“shell-fu”的内容更新
累计:41 篇(自 2009-06-02 起)
更新:约1篇/月,最后更新838 天前
shell-fu
this script will run check a for the ubuntu 9.10 launch once every 5 mins and let you know when it's available:while [ 1 ]; do if [ -z "`curl -i "http://cdimage.ubuntu.com/releases/9.10/release/"|grep "404"`" ];then kdialog --msgbox "9.10 released"; exit; fi; sleep 300; done ... (305 天前)
shell-fu
want to check the amount of used, free and total memory and swap from the command line? this script displays memory and swap information. fully posix compliant and should work with all 2.[2-6].* kernels .#fetch and process memory information[ -f /proc/meminfo ] && {buffers=`grep -we 'buffers' /proc/meminfo | cut -d' ' -f2- | tr -d "[a-z][a-z] "`cac... (305 天前)
shell-fu
mencoder -oac lavc -ovc lavc -of mpeg -mpegopts format=dvd -vf scale=720:480,harddup -srate 48000 -af lavcresample=48000 -lavcopts codec=mpeg2video:vrc_buf_size=1835:vrc_maxrate=9800:vbitrate=5000:keyint=18:aspect=16/9:acodec=ac3:abitrate=192 -ofps 30000/1001 -o output.mpg input.extensionoptions you might want to change:scale: 720:480 for ntsc, 72... (305 天前)
shell-fu
generate a random 8 character password containing a-z, a-z and 0-9:egrep -ioam1 '[a-z0-9]{8}' /dev/urandom ... (305 天前)
shell-fu
to find the last modified files in a directory you can use ls -ltr. to find the last modified file on a file system it will not work, but the following command will work:find /etc -type f -printf "%t@ %t+ %p" | sort -n ... (305 天前)
shell-fu
apt-get install sl(or equivalent on your particular distro).a "good" way of learning not to mistype ls. ... (305 天前)
shell-fu
displays a random xkcd comic. requires imagemagick.wget http://dynamic.xkcd.com/comic/random/ -o -| grep <img src="http://imgs.xkcd.com/comics | sed s/<img src="// | sed s/"[a-z]*.*// | wget -i - -o -| display ... (305 天前)
订阅者 ( 1 )
tree.yuu
相关订阅源
RSS 草根网

草根网关注互联网行业变化,关注草根创业,关注项目的运营,草根网是以DIGG +点评方式阅读IT资讯,交流思想,积累知识的学习型互助社区。

标签: 草根网 it it资讯 草根 it资讯精读

指数 | 2076人订阅  

RSS Mailinator

pipes output

指数 | 1人订阅  

我要反馈