Please see the program help or the manual for the latest update of this documentation. Most of the functionality of WinHex can be used in an automated way, e.g. to speed up recurring routine tasks or to perform certain tasks on unattended remote computers. The ability to execute scripts other than the supplied sample scripts is limited to owners of a professional or specialist license. scripts ca...
by shujuhuifu802 - 存储文档中心 - 2009-03-26 17:19:59 阅读(1614) 回复(0)
MySQL Performance Tuning Primer Script This script takes information from "SHOW STATUS LIKE..." and "SHOW VARIABLES LIKE..." to produce sane recomendations for tuning server variables. It is compatable with all versions of MySQL 3.23 and higher (including 5.1). Currently it handles recomendations for the following: Slow Query Log Max Connections Worker Threads Key Buffer Query Cache Sor...
把学习的关于gui设计的代码贴上吧。 这些代码都是在FC6环境下,用kate写的。我感觉kate比较好用。呵呵 今天的代码贴到这里,不语法加亮了,奇怪!可能是没有下载flash插件吧。 不知道你们看着有没有颜色!呵呵 1,click_counter.py from Tkinter import * class Application(Frame): " " " GUI application which counts button clicks." " " def __init__(self, master): " " " Initialize the frame." " " ...
第五天了。 先祝咱们周末愉快! 说起来python,学习有段时间了。一定要坚持下去。 做事不能一蹴而就,先来个温故而知新吧。 1,readit.py print "Opening and closing the file." text_file=open("read_it.txt", "r") # before you can read from a text file, you need to open it # i don't include any path information # python looks in the current directory for the file text_file.close() # whenever you've done with ...
http://blog.chinaunix.net/article.php?articleId=62903&blogId=12318 学习 Shell scripts 如果您真的很想要走信息这条路,并且想要好好的管理好属于您的主机,那么,别说鸟哥不告诉您, Shell scripts 真的是必须要学习的一项课题呢!基本上, shell script 有点像是早期的批次档, 亦即是将一些指令汇整起来一次执行,但是 Shell script 拥有更强大的功能,那就是, 他可以进行类似程序 (program) 的撰写,并且,不需要经过编译...
Does anyone know some online books about how to write shell scripts? Thanks a lot.