程序员经常用到的UNIX命令

2023-07-06   


1. 简单的文件维护与管理
   ls, cd, mkdir, rm, cp, mv, cat, more
   2. 源程序的编写
   vi, ed
   3. 编译与连接
   gcc, g++, ld
   4. 运行与调试
   adb,gdb
   5. 查看运行状态
   % ps –ef
   % grep aaa a.txt (aaa is the chars in the file name a.txt)
   % prstat (ctrl D to exit)
   % kill pid (pid is a process id)


相关内容:

  1. Unix里面如何在后台运行程序
  2. UNIX命令速查表
  3. UNIX操作系统结构由哪几部分组成
  4. UNIX文件系统常用命令
  5. UNIX文件系统常用命令
  6. Unix如何在一行中运行多个命令