当前位置: 技术问答>linux和unix
几到笔试题 来看看!!
来源: 互联网 发布时间:2016-04-04
本文导语: 本人是搞windows开发 前几天笔试被我问了几道 unix题 请教高手 1.On a unix operating system command line ,what command would you use to obtain a list of currently running programs. 2.On a unix operating system command line ,what com...
本人是搞windows开发 前几天笔试被我问了几道 unix题 请教高手
1.On a unix operating system command line ,what command would you use to obtain a list of currently
running programs.
2.On a unix operating system command line ,what command would you use to obtain a list of files in the current working place.
3.On a unix operating system command line ,what command would you use to stop a program with an id of
'1932'.
4.On a unix operating system command line ,what command would you use to get a list of files in the
current directorys heirarchy that contain the string "FIXME".
1.On a unix operating system command line ,what command would you use to obtain a list of currently
running programs.
2.On a unix operating system command line ,what command would you use to obtain a list of files in the current working place.
3.On a unix operating system command line ,what command would you use to stop a program with an id of
'1932'.
4.On a unix operating system command line ,what command would you use to get a list of files in the
current directorys heirarchy that contain the string "FIXME".
|
1.ps -ef
2.ls
3.kill 1932
4.ls | grep "FIXME"
linux下的。。。unix没用过,这几个命令也许一样吧。。。
2.ls
3.kill 1932
4.ls | grep "FIXME"
linux下的。。。unix没用过,这几个命令也许一样吧。。。
|
4. grep -lr FIXME *
|
3.On a unix operating system command line ,what command would you use to stop a program with an id of
答案应该是 : kill -s SIGSTOP 1932
您可能感兴趣的文章:
本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。