本文主要是介绍鹅厂一面题目总结,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
1,将/tmp目录下的.sh结尾的文件所有改为.bash
原:find /tmp -name “*.sh” -exec mv {} {}.bash \;
改:find /tmp -name “*.sh” -exec rename .sh .bash {} \;2,查询/A目录下大于2G的文件,并拷贝到/B目录下
原:find /A +2G -exec cp {} /B \;
改:find /A -size +2G -exec cp {} /B \;3,添加User1,主组Oracle,附加组DBA
原:useradd -g Oracle -aG DBA -u User1
(添加-a选项是避免多个附加组覆盖,此处用不到,-u选项用来指定uid)
改:useradd -g Oracle -G DBA User14,抓关于某主机的地址,某端口,某协议的包
使用tcpdump或者wireshare
#tcpdump tcp port 23 and host 210.27.48.1
#tcpdump -nn -n src host 192.168.228.246 and port 22 and tcp
#tcpdump src host 192.168.0.1 and dst port not 21
这篇关于鹅厂一面题目总结的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!