Displays the reference manual page about a AIX command. (man can use in DB UAT Server, similar command like whatis,apropos)
Syntax man [-] [-k keywords] topic
Option or argument
|
Function
|
-
|
|
-k keywords
|
|
Topic
|
|
To print a manual page, type man ls | lp
Samples:
You forgot the options that you can use with the ls command, so type
man ls
To save this information for later perusal or inclusion in a user’s manual you’re writing for your department, type
man ls > ls.info
Creates a new directory.
Syntax mkdir directory
Option or argument
|
Function
|
Director
|
Specifies the name of the new directory. If the name doesn’t begin with a slash, the new directory is created as s subdirectory of the current working directory. If the name begins with a slash, the name defines the path from the root directory to the new directory.
|
You must have permission to write in a directory to create a subdirectory in it. For the most part, you should create directories in your own home directory or subdirectories of it.
Viewing larger files. Relate: cat.
Renames a file or moves it from one directory to another.
Syntax mv [-i] oldname newname
or
mv [-i] filename directory[/newname]
Option or argument
|
Function
|
-I
|
|
Oldname
|
|
Newname
|
|
Filename
|
|
Directory
|
|
changes login password
writes a file as report to standard output.
Displays information about your processes(jobs).
Syntax ps [-a] [-l] [-u] [x]
Option or argument
|
Function
|
-a
|
|
-e
|
Writes all processes, except kernel processes.
|
-f
|
Generates a full listing.
|
-l
|
|
-T
|
Displays the process hierarchy rooted at a given pid in a tree format
|
-u
|
|
x
|
|
Status Value
Option or argument
|
Function
|
R
|
|
S
|
Sleeping (20 seconds or less)
|
I
|
Idle (more than 20 seconds)
|
T
|
|
e.g.
ps -ef|grep …; ps -T <process number>; ps –eU <user name>
ps -ef | grep 'startMatnJobQ.sh' &
ftp to remote host. Refer get.
Syntax put xxx, put path1\xxx, put path1\xxx path2\xxx
Show current path.
Reads one line from standard input.
Option or argument
|
Function
|
-r
|
|
e.g.
while read -r xx yy
do
print printf "%s %s/n" $yy $xx
done < InputFile
Deletes (removes) a file permanently.
Syntax rm [-i] [-r] filenames
Option or argument
|
Function
|
-i
|
|
-r
|
|
Filename
|
|
-f
|
Does not prompt before removing a write-protected file.
|
e.g. in Shell: rm -f ${INFILEPATH}/wsd_bcebe_m1.bin
分享到:
相关推荐
14. `tlist` 和 `kill`:这两个命令是用于查看和结束进程的,通常在系统调试和故障排除中使用。 15. `del` 和 `move`:文件管理命令,`del`用于删除文件,`/S /Q`选项可以递归删除目录及其内容而不提示,`move`用于...
如`dir /b | sort > list.txt` 会排序目录中的文件并保存到`list.txt`,然后可以使用`fc /l list.txt list_sorted.txt` 比较排序前后的差异。 3. **统计分析**:`find`命令可以计数特定字符或字符串。如`type file....
* -L [ c ] list servers [ clean output ]:列出服务器。 * -p [ 1 ] print statistics [ colon format ]:打印统计信息。 * -X [ 1 ]:禁用命令、启动脚本和环境变量。 * -? show syntax summary:显示语法摘要。 ...
List<String> commands = Arrays.asList("cmd", "/c", "dir"); ProcessBuilder pb = new ProcessBuilder(commands); Process process = pb.start(); ``` **JavaScript调用命令行** 在JavaScript中,由于安全...
##### 4. **`net time`** - **查看远程计算机时间**: ```cmd net time 目标IP ``` 查看远程计算机的当前时间。 - **同步本地时间**: ```cmd net time 目标IP set ``` 将本地计算机的时间设置为与目标...
process->start("cmd.exe", QStringList() ); ``` 这里,`"/c"`参数告诉CMD执行完`notepad.exe`后关闭,`notepad.exe`则是我们要启动的外部程序。 接下来,我们关注如何处理子进程的输出。QProcess提供了`...
process.start("cmd.exe", QStringList() ); process.waitForFinished(); ``` 这里的`start`方法启动了CMD进程,并通过`/c`参数传递了执行"dir"命令的指令。`waitForFinished`确保我们等待命令执行完成后再继续执行...
4. `pyparsing-1.5.6-9.el7.noarch.rpm`: 虽然名字里有"py",但这个包实际上是Perl的一个依赖,用于解析和生成结构化文本,例如在解析模块配置时可能用到。 5. `perl-Locale-Maketext-1.23-3.el7.noarch.rpm`: 为...
### CMD中的重定向输出与管道操作详解 在日常的编程工作中,特别是在Windows环境下进行开发时,熟练掌握CMD命令行工具的使用技巧对于提高工作效率是非常有帮助的。本文将重点介绍CMD中的重定向输出(`>`、`>>`)...
2. **事件选择**: `trace-cmd list`可以列出所有可用的内核事件,用户可以根据需求选择要追踪的事件。 3. **查看日志**: `trace-cmd report`命令将追踪数据转化为可读的报告,帮助分析系统行为。 4. **保存/加载**...
cmd.Parameters.Add(new OracleParameter("p_list", oraArray)); cmd.ExecuteNonQuery(); ``` 5. **关闭连接**: 执行完存储过程后,别忘了关闭数据库连接。 通过这种方式,C#中的自定义列表(List)可以高效地...
### 遍历CheckBoxList,获得选中项的值动态绑定CheckBoxList #### 知识点一:CheckBoxList概述及应用场景 **CheckBoxList** 是ASP.NET Web Forms中一个非常有用的控件,它允许用户选择一个或多个选项。CheckBoxList...
#### 4. **网络信息查询** - `net view`:列出当前网络中的计算机。 - `net config`:显示系统配置信息。 - `net logoff`:注销当前用户会话。 #### 5. **进程与通信管理** - `net pause`:暂停一个服务。 - `...
在Java编程中,有时我们需要...4. 操作系统兼容性考虑 5. 安全编码实践 在实际项目中,如果频繁进行此类操作,建议使用Java的I/O和NIO库,或者第三方库如Apache Commons IO,它们提供了更为高级和安全的文件操作接口。
- `tlist -t` 列出系统中的所有进程,`kill -F 进程名` 强制结束进程(需要安装额外工具)。 5. **文件操作**: - `del` 命令用于删除文件,`del /F 文件名` 可删除只读文件,`del /S /Q 目录` 删除指定目录下的...
* firewall-cmd --zone=dmz --list-ports 这将显示 dmz zone 中所有打开的端口。 firewall-cmd 命令还可以用于添加端口到 zone,例如: * firewall-cmd --zone=dmz --add-port=8080/tcp 这将添加 8080 端口到 ...
- `tlist -t`:列出系统进程(需额外安装工具)。 - `kill -F`:强制结束进程(同样需要额外安装工具)。 掌握这些CMD命令,可以帮助用户高效地进行系统管理和网络操作,尤其是在没有图形用户界面的情况下。了解...
16. `tlist -t`和`kill -F`: 分别用于列出和结束进程,通常在Support Tools中。 17. `del`和`rmdir`: 用于删除文件和目录,`-F`选项可删除只读文件,`/S`和`/Q`分别用于删除目录及其内容,且不提示确认。 18. `...
### CMD常用命令解析 #### 一、Ping命令详解 **命令格式:** ``` ping [-t] [-a] [-n count] [-l size] [-f] [-i TTL] [-v TOS] [[-r count] | [-s count]] [-j computer-list | -k computer-list] [-w timeout] ...