📄 commandtips.form
字号:
<?xml version="1.0" encoding="UTF-8" ?><Form version="1.3" type="org.netbeans.modules.form.forminfo.JFrameFormInfo"> <Properties> <Property name="defaultCloseOperation" type="int" value="2"/> <Property name="title" type="java.lang.String" value="Command Tips"/> </Properties> <SyntheticProperties> <SyntheticProperty name="formSizePolicy" type="int" value="1"/> </SyntheticProperties> <AuxValues> <AuxValue name="FormSettings_generateMnemonicsCode" type="java.lang.Boolean" value="false"/> <AuxValue name="FormSettings_layoutCodeTarget" type="java.lang.Integer" value="2"/> <AuxValue name="FormSettings_listenerGenerationStyle" type="java.lang.Integer" value="0"/> <AuxValue name="FormSettings_variablesLocal" type="java.lang.Boolean" value="false"/> <AuxValue name="FormSettings_variablesModifier" type="java.lang.Integer" value="2"/> </AuxValues> <Layout> <DimensionLayout dim="0"> <Group type="103" groupAlignment="0" attributes="0"> <Group type="102" attributes="0"> <EmptySpace max="-2" attributes="0"/> <Group type="103" groupAlignment="0" attributes="0"> <Group type="102" attributes="0"> <Component id="jScrollPane1" pref="380" max="32767" attributes="0"/> <EmptySpace max="-2" attributes="0"/> </Group> <Group type="102" alignment="1" attributes="0"> <Component id="jLabel1" min="-2" max="-2" attributes="0"/> <EmptySpace min="-2" pref="163" max="-2" attributes="0"/> </Group> </Group> </Group> </Group> </DimensionLayout> <DimensionLayout dim="1"> <Group type="103" groupAlignment="0" attributes="0"> <Group type="102" alignment="0" attributes="0"> <EmptySpace max="-2" attributes="0"/> <Component id="jLabel1" min="-2" max="-2" attributes="0"/> <EmptySpace max="-2" attributes="0"/> <Component id="jScrollPane1" pref="259" max="32767" attributes="0"/> <EmptySpace max="-2" attributes="0"/> </Group> </Group> </DimensionLayout> </Layout> <SubComponents> <Container class="javax.swing.JScrollPane" name="jScrollPane1"> <Properties> <Property name="horizontalScrollBarPolicy" type="int" value="31"/> </Properties> <AuxValues> <AuxValue name="autoScrollPane" type="java.lang.Boolean" value="true"/> </AuxValues> <Layout class="org.netbeans.modules.form.compat2.layouts.support.JScrollPaneSupportLayout"/> <SubComponents> <Component class="javax.swing.JTextArea" name="commandTipsArea"> <Properties> <Property name="columns" type="int" value="20"/> <Property name="editable" type="boolean" value="false"/> <Property name="rows" type="int" value="5"/> <Property name="text" type="java.lang.String" value="There is the command usage tips for our system.
This system has a UNIX-like shell, if you are familiar with the 
UNIX shell, you will get the way of using this shell quickly.

touch:
Description: 
 The touch command is used to create a empty file.This file usually is 
edited and them become a executable file.
Usag:
 touch [path]. The path here can be a relative path or a 
absoluted path
Example:
 touch /xx/yy
 touch xx/yy
 touch ./xx/yy

mkdir:
Description: 
 The mkdir command is used to create a empty dirctory
Usag:
 mkdir [path]. The path here can be a relative path or a 
absoluted path 
Example:
 mkdir /xx/yy
 mkdir xx/yy
 mkdir ./xx/yy

del:
Description: 
 The delete command is used to del a file. It can not be used 
to delete a dirctory 
Usag:
 del [path]. The path here can be a relative path or a 
absoluted path
Example:
 del /xx/yy
 del xx/yy
 del ./xx/yy

rm:
Description: 
 The rm command is used to delete a file or a dirctory.If the
dirctory is not empty,it will pop up a option pane and then 
ask the user to confirm. 
Usag:
 rm [path]. The path here can be a relative path or a 
absoluted path
Example:
 rm /xx/yy
 rm xx/yy
 rm ./xx/yy

edit:
Description: 
 The edit command is used to edit a file.remember to save
the file when you finish your edit to your file. 
Usag:
 edit [path]. The path here can be a relative path or a 
absoluted path
Example:
 edit /xx/yy
 edit xx/yy
 edit ./xx/yy

run:
Description: 
 The run command is used to execute a file. 
Usag:
 run [path]. The path here can be a relative path or a 
absoluted path
Example:
 run /xx/yy
 run xx/yy
 run ./xx/yy

Enjoy!"/> </Properties> </Component> </SubComponents> </Container> <Component class="javax.swing.JLabel" name="jLabel1"> <Properties> <Property name="text" type="java.lang.String" value="Commend Tips"/> </Properties> </Component> </SubComponents></Form>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -