• 软件测试技术
  • 软件测试博客
  • 软件测试视频
  • 开源软件测试技术
  • 软件测试论坛
  • 软件测试沙龙
  • 软件测试资料下载
  • 软件测试杂志
  • 软件测试人才招聘
    暂时没有公告

字号: | 推荐给好友 上一篇 | 下一篇

Unix基本命令.(作者为 HOUSCOUS)

发布: 2007-6-08 22:43 | 作者: seanhe | 来源: | 查看: 21次 | 进入软件测试论坛讨论

领测软件测试网


at : execute commands at a specified time/date. 
awk: a scripting language, especially useful for manipulating text and automation. 


bash : invokes the Bourne Again Shell (standard on most boxes). 
batch: execute comands when load permits. 
bc : interactive C-like calcultor (integers only). 


cal : displays a calender, also lets you choose month/year using parameters. 
calender : invoke a reminder service. 
cancel : cancel request to calender. 
cat : concatenate files (displays a file without scrolling ability. Simply dumps 
it to the standard output. Can be useful when chaining multiple 
applications to do complicated jobs, so one application can use another's 
output as input). 

cd : change the current working directory. 
chgrp : change group ownership of a file. 
chmod : change access patterns (permissions) to files. 
chown : change user ownership of files. 
clear : clear the screen. 
cmp : compare two files. 
cp : copy files. 
cpio : archive and extract files. 
cron : clock deamon (executes "batch" and "at" commands). 
crontab : schedules commands at regular intervals. 
crypt : encrypt , decrypt files using altered DES, standard to Unix passwords 
(restricted distribution). 
csh : invoke the C shell. 
csplit : split file into several other files. 
cu : call up another unix terminal. 
cut : cut selected fields from each line of file. 


date : displays the time and date (can also change it if you're root). 
dd : convert and copy a file. 
df : reports space (free, total etc') on all mounted file systems. 
diff : copare two files. 
diff3 : compare 3 or more files. 
dircmp : compare two directories. 
du : report disk usage. 


echo : echo argument to standart output. 
ed : line oriented editor. 
egrep : extended version of grep (searches for extended regular expressions). 
expr : evaluate boolean and arithmetic expression. 


fgrep : same as grep, only it interprets patterns as a list of fixed strings. 
false : return nonzero (false) exit status. 
file : report type of file. 
find : find matching files and run specified programs on them (optional). 
finger : report user information (operates remotely only if a finger server is running 
on the remote host). 
ftp : (file transfer protocol) a client for FTP servers. 


grep : search files for regular expression matches. 


haltsys : gracefully shutdown sytem (can only be run by root. halt in Linux). 
head : display first 10 lines of a file. 


join : display the combination (lines with command field) of two fields. 


kill : send a signal to terminate a process. 
ksh : invoke the korn shell. 


line : read a specific line out of a file (shell script usage). 
ln : create a link to a file/directory. 
logname : gets your login name. 
lpr : sends a request to printer. 
lprint : prints on local printer. 
lpstat : reports printer status. 
lpq : same as above. 
ls : lists the contents of directory. 


mail : send and recieve mail. 
man : displays manual pages. 
mesg : grant or deny permissions to recieve messages from other users using the 
write command. 
mkdir : create a new directory . 
mknod : build a special file. 
more : display file one page at a time. 
mount : mount a storage device. 
mv : move or rename a file. 


news : display news item from NNTP servers. 
nice : change priorities of processes. 
nohup : run a command after logout (ignores hangup signals). 
nroff : format files for printing. 
nslookup : retrieve information from DNS servers. 


od : displays a file in 8-based octals. 


passwd : create or change login password. 
paste : merge lines of files. 
pr : format and print file. 
ps : reports status of active processes. 
pstat : report system status. 
pwcheck : check /etc/passwd (default) file. 
pwd : display current working directory. 


rm : remove (erase) files or directories (unrecoverable). 
rmdir : remove an empty directory. 
rsh : invoke Restricted Bourne Shell. 


sed : the stream editor. 
set : assign value to variable. 
setenv : assign value to enviroment variable. 
sh : invoke Bourne shell. 
sleep : suspend execution of a command for a given period. 
sort : sort and merge files. 
spell : find spelling errors. 
split : split file to smaller files. 
stty : set options for a terminal. 
su : spawns a subshell with a different uname, requires other user's 
password,unless you're root. 
sum : compute checksums and number of blocks for files. 


tabs : set tabs on a terminal. 
tail : display last 10 lines of file. 
tar : a simple compression tool that merges multiple files into a single one, 
originally made to make backing up materials on backup tapes easier. 
tee : create a tee in a pipe. 
telnet : access remote systems using the telnet protocol. 
test : test various expressions and files. 
time : display elapsed time (execution, process, and system times) for a 
command. 
touch : change time/date stamps of files. 
tr : substitutes sets of charecters. 
translate : translates files to different format. 
troff : format files to phototypester. 
true : return zero (true) exit status. 
tset : set terminal mode. 
tty : report a name of a terminal. 


umask : set file-creation mode (permissions) mask. 
umount : unmount a device. 
uname : display the name of the current system. 
uniq : report any duplicate line in a file. 
units : convert numbers from one unit to another. 
unzip : extract files from zip archieve. 
uptime : report system activety. 
uucp : copy files between two unix systems (oldie but still beautiful). 
uulog : report uucp status. 
uuname : list uucp sites known to this site. 
uudecode : decode to binary after "uuencode" transmission. 
uencode : encode binary file for email transmission. 
uustat : report status of uucp or cancel a job. 
uupick : receive public files sent bu uuto. 
uuto : send files to another public Unix system. 
uux : execute command to remote Unix system. 


vi : a screen oriented (visual) editor (cool ,but Vim is better). 


wall : sends message to all users (root only). 
wait : await completion of background process. 
wc : count lines, words, bytes etc' in one or more files. 
who : report active users. 
whois : search for user information. 
write : send a message for another user (see mesg). 
whoami : which user you are logged in as at the moment. If you, for example, 
switch to a different user, logname will show the original uname you 
logged in as, and whoami will show the current user. 



zip : archieve file or files in zip format.'

 lix1216 回复于:2003-05-15 14:25:41
谢谢,朋友

我也是一个系统管理员,能与你一起交流一下好吗??????

 angelet 回复于:2003-05-15 15:30:23
good !!!!!

 我爱臭豆腐 回复于:2003-05-15 15:39:53
希望以后能够有更多更好的东西出来

 DADAN123 回复于:2003-05-15 16:59:26
谢了,对于我们初学者来说很有帮助,希望以后能多发点,有中文更好了。 

 hanzhuo 回复于:2003-05-15 17:35:14
   很好,这对菜鸟是很好的
知道吗,现在菜鸟好象是越来越多了
哎,谁叫咱们中华人多呢

 tcp/ip 回复于:2003-05-15 22:43:40
菜鸟多,好啊,说明有越来越多的人开始关注FreeBSD了。
差点忘了说,偶也是菜鸟。

 feming 回复于:2003-05-15 22:57:59
大家一起努力,终有一天中国有自己的操作系统的——而且百花齐放!

 tiantian02 回复于:2003-05-20 08:17:28
的确挺好的!

延伸阅读

文章来源于领测软件测试网 https://www.ltesting.net/


关于领测软件测试网 | 领测软件测试网合作伙伴 | 广告服务 | 投稿指南 | 联系我们 | 网站地图 | 友情链接
版权所有(C) 2003-2010 TestAge(领测软件测试网)|领测国际科技(北京)有限公司|软件测试工程师培训网 All Rights Reserved
北京市海淀区中关村南大街9号北京理工科技大厦1402室 京ICP备10010545号-5
技术支持和业务联系:info@testage.com.cn 电话:010-51297073

软件测试 | 领测国际ISTQBISTQB官网TMMiTMMi认证国际软件测试工程师认证领测软件测试网