`
textboy
  • 浏览: 20350 次
  • 性别: Icon_minigender_1
  • 来自: 广州
最近访客 更多访客>>
社区版块
存档分类
最新评论

CMD List [4]

阅读更多

1.1         man

 

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

-

If your system usually presents manual pages one screen at a time, this option displays them without stopping – useful in redirecting the output of man to a file or to the printer.

-k keywords

Specifies one or more keywords to search for. You see all man pages that contain the keyword(s) in their header lines.

Topic

Specifies the topic you want information about.

 

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

 

1.2         mkdir

 

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.

 

1.3         more

Viewing larger files. Relate: cat.

 

1.4         mv

 

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

Tells mv to prompt you before it replaces an existing file with a moved or renamed file.

Oldname

Specifies the existing file you want to rename.

Newname

Specifies the new name to use for the file.

Filename

Specifies the file that you want to move.

Directory

Specifies the directory to which you want to move the file.

 

1.5         passwd

changes login password

1.6         pr

writes a file as report to standard output.

 

1.7         ps

 

Displays information about your processes(jobs).

 

Syntax             ps [-a] [-l] [-u] [x]

 

Option or argument

Function

-a

Displays information about all processes. If you omit this option, you see only your processes.

-e

Writes all processes, except kernel processes.

-f

Generates a full listing.

-l

Displays a longer, more-detailed version.

-T

Displays the process hierarchy rooted at a given pid in a tree format

-u

Displays a user-oriented report with additional information.

x

Displays all processes that are running in the background and not using a terminal.

      

       Status Value

Option or argument

Function

R

Running

S

Sleeping (20 seconds or less)

I

Idle (more than 20 seconds)

T

Stopped

 

e.g.

       ps -ef|grep …; ps -T <process number>; ps –eU <user name>

       ps -ef | grep 'startMatnJobQ.sh' &

 

1.8         put

ftp to remote host. Refer get.

Syntax             put xxx, put path1\xxx, put path1\xxx path2\xxx

1.9         pwd

Show current path.

 

1.10     read

Reads one line from standard input.

 

Option or argument

Function

-r

Specifies that the read command treat a \ (backslash) character as part of the input line, not as a control character.

 

e.g.

while read -r xx yy

do

         print printf "%s %s/n" $yy $xx

done < InputFile

 

1.11     rm

 

Deletes (removes) a file permanently.

 

Syntax             rm [-i] [-r] filenames

 

Option or argument

Function

-i

Asks you to confirm that you want to delete each file.

-r

Deletes an entire directory and the files it contains. Watch out – you can do great deal of damage with this option! Always use the –i option.

Filename

Specifies the file(s) or folders to delete.

-f

Does not prompt before removing a write-protected file.

 

e.g. in Shell: rm -f ${INFILEPATH}/wsd_bcebe_m1.bin

分享到:
评论

相关推荐

    CMDCMD命令CMD命令

    14. `tlist` 和 `kill`:这两个命令是用于查看和结束进程的,通常在系统调试和故障排除中使用。 15. `del` 和 `move`:文件管理命令,`del`用于删除文件,`/S /Q`选项可以递归删除目录及其内容而不提示,`move`用于...

    cmd管道技术向cmd发送字符

    如`dir /b | sort &gt; list.txt` 会排序目录中的文件并保存到`list.txt`,然后可以使用`fc /l list.txt list_sorted.txt` 比较排序前后的差异。 3. **统计分析**:`find`命令可以计数特定字符或字符串。如`type file....

    sqlcmd 参数详解

    * -L [ c ] list servers [ clean output ]:列出服务器。 * -p [ 1 ] print statistics [ colon format ]:打印统计信息。 * -X [ 1 ]:禁用命令、启动脚本和环境变量。 * -? show syntax summary:显示语法摘要。 ...

    java javascript 调用命令行 cmd

    List&lt;String&gt; commands = Arrays.asList("cmd", "/c", "dir"); ProcessBuilder pb = new ProcessBuilder(commands); Process process = pb.start(); ``` **JavaScript调用命令行** 在JavaScript中,由于安全...

    CMD网络命令大全123

    ##### 4. **`net time`** - **查看远程计算机时间**: ```cmd net time 目标IP ``` 查看远程计算机的当前时间。 - **同步本地时间**: ```cmd net time 目标IP set ``` 将本地计算机的时间设置为与目标...

    Qt调用CMD启动外部程序Demo.zip

    process-&gt;start("cmd.exe", QStringList() ); ``` 这里,`"/c"`参数告诉CMD执行完`notepad.exe`后关闭,`notepad.exe`则是我们要启动的外部程序。 接下来,我们关注如何处理子进程的输出。QProcess提供了`...

    qt调用cmd命令和dll例子

    process.start("cmd.exe", QStringList() ); process.waitForFinished(); ``` 这里的`start`方法启动了CMD进程,并通过`/c`参数传递了执行"dir"命令的指令。`waitForFinished`确保我们等待命令执行完成后再继续执行...

    linux 离线安装perl-IPC-Cmd

    4. `pyparsing-1.5.6-9.el7.noarch.rpm`: 虽然名字里有"py",但这个包实际上是Perl的一个依赖,用于解析和生成结构化文本,例如在解析模块配置时可能用到。 5. `perl-Locale-Maketext-1.23-3.el7.noarch.rpm`: 为...

    cmd中的重定向输出,管道

    ### CMD中的重定向输出与管道操作详解 在日常的编程工作中,特别是在Windows环境下进行开发时,熟练掌握CMD命令行工具的使用技巧对于提高工作效率是非常有帮助的。本文将重点介绍CMD中的重定向输出(`&gt;`、`&gt;&gt;`)...

    静态编译的trace-cmd,x86版本,v3.1.4

    2. **事件选择**: `trace-cmd list`可以列出所有可用的内核事件,用户可以根据需求选择要追踪的事件。 3. **查看日志**: `trace-cmd report`命令将追踪数据转化为可读的报告,帮助分析系统行为。 4. **保存/加载**...

    C# 传入自定义列表List 到Oracle存储过程

    cmd.Parameters.Add(new OracleParameter("p_list", oraArray)); cmd.ExecuteNonQuery(); ``` 5. **关闭连接**: 执行完存储过程后,别忘了关闭数据库连接。 通过这种方式,C#中的自定义列表(List)可以高效地...

    遍历CheckBoxList,获得选中项的值动态绑定CheckBoxList代码

    ### 遍历CheckBoxList,获得选中项的值动态绑定CheckBoxList #### 知识点一:CheckBoxList概述及应用场景 **CheckBoxList** 是ASP.NET Web Forms中一个非常有用的控件,它允许用户选择一个或多个选项。CheckBoxList...

    常用的一些cmd命令

    #### 4. **网络信息查询** - `net view`:列出当前网络中的计算机。 - `net config`:显示系统配置信息。 - `net logoff`:注销当前用户会话。 #### 5. **进程与通信管理** - `net pause`:暂停一个服务。 - `...

    java调用cmd创建目录和复制文件

    在Java编程中,有时我们需要...4. 操作系统兼容性考虑 5. 安全编码实践 在实际项目中,如果频繁进行此类操作,建议使用Java的I/O和NIO库,或者第三方库如Apache Commons IO,它们提供了更为高级和安全的文件操作接口。

    cmd应用大全,经典不容错过

    - `tlist -t` 列出系统中的所有进程,`kill -F 进程名` 强制结束进程(需要安装额外工具)。 5. **文件操作**: - `del` 命令用于删除文件,`del /F 文件名` 可删除只读文件,`del /S /Q 目录` 删除指定目录下的...

    Linux系统firewall-cmd 命令详解.docx

    * firewall-cmd --zone=dmz --list-ports 这将显示 dmz zone 中所有打开的端口。 firewall-cmd 命令还可以用于添加端口到 zone,例如: * firewall-cmd --zone=dmz --add-port=8080/tcp 这将添加 8080 端口到 ...

    CMD快速操作

    - `tlist -t`:列出系统进程(需额外安装工具)。 - `kill -F`:强制结束进程(同样需要额外安装工具)。 掌握这些CMD命令,可以帮助用户高效地进行系统管理和网络操作,尤其是在没有图形用户界面的情况下。了解...

    CMD命令(自己的收藏啊)

    16. `tlist -t`和`kill -F`: 分别用于列出和结束进程,通常在Support Tools中。 17. `del`和`rmdir`: 用于删除文件和目录,`-F`选项可删除只读文件,`/S`和`/Q`分别用于删除目录及其内容,且不提示确认。 18. `...

    CMD常用命令.txt

    ### 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] ...

Global site tag (gtag.js) - Google Analytics