摘要:
1. variable2. control flow3. commands3.1 how to set your own prompt echo $PS1 -- the default format of your command line prompt echo $PS2 -- the format of the second-tier command line prompt update: PS1="[\t]\$" it will show like this:[21:51:22]$ (this only apply to the current session)3.2 阅读全文
摘要:
免安装版:/Files/kelin1314/Foxit_Reader.rarGSM:/Files/kelin1314/GSM.pdf 阅读全文
摘要:
=> /var/log/messages : General log messages=> /var/log/boot : System boot log=> /var/log/debug : Debugging log messages=> /var/log/auth.log : User login and authentication logs=> /var/log/daemon.log : Running services such as squid, ntpd and others log message to this file=> /var/l 阅读全文
该文被密码保护。 阅读全文
摘要:
import java.io.InputStream;import java.util.ArrayList;import java.util.Iterator;import java.util.List;import org.dom4j.Document;import org.dom4j.Element;import org.dom4j.io.SAXReader;public class Read... 阅读全文
摘要:
介绍 Java 自带的线程池转自http://www.evget.com/zh-CN/info/catalog/9781.html从 Java 5 开始,Java 提供了自己的线程池。线程池就是一个线程的容器,每次只执行额定数量的线程。 java.util.concurrent.ThreadPoolExecutor 就是这样的线程池。它很灵活,但使用起来也比较复杂,本文就对其做一个介绍。 首先是... 阅读全文
摘要:
Private Sub Worksheet_SelectionChange(ByVal Target As Range) col_num = ActiveCell.Column row_num = ActiveCell.Row Cells(row_num, 1) = DateEnd Sub 阅读全文