嗨害嗨害嗨

news/2024/11/14 23:17:04/

创建临时目录
[root@localhost ~]# mkdir test
创建多个同级目录
[root@localhost ~]# touch /test/{passed,group,bashrc,profile,sshd_config}
创建软链接
[root@localhost ~]# ln -s /etc/motd /test/motd.soft
创建硬链接
[root@localhost ~]# ln /etc/motd /test/motd.hard

查看内核信息,并写入
[root@localhost ~]# cat /etc/redhat-release > /test/motd.soft 
查看主机名,并写入
[root@localhost ~]# hostname >> /test/motd.hard 
查看当前shell,并写入
[root@localhost ~]# echo ${SHELL} >> /test/motd.hard 
查看/下的文件名并写入
[root@localhost ~]# ls / > /test/file
查看当前目录
[root@localhost ~]# pwd
/root
将/test目录的详细追加写入/test/file
[root@localhost ~]# cd /test/
[root@localhost test]# ll /test/ >> /test/file 

将当前时间添加到/test下的passwd,group,bashrc,profile,sshd_config中
[root@localhost test]# date | tee /test/{passwd,group,bashrc,profile,sshd_config}
Thu Aug 18 07:28:27 CST 2022
将当前用户名追加到/test下的passwd,group,bashrc,profile,sshd_config中
[root@localhost test]# hostname | tee -a /test/{passwd,group,bashrc,profile,sshd_config}
localhost.localdomain

将/etc/passwd读入/test/passed,并修改文件的root字符为admin
[root@localhost test]#vim passwd
》:r /etc/passwd
》:set number
》:1,40 s/root/admin/g
》:wq
将/etc/group读入/test/group,只保留root开头的行内容
[root@localhost test]#vim group
》:r /etc/group
》:/root
》:4,70 d
》wq
将/etc/.bashrc读入/test/bashrc,删除#开头的内容
[root@localhost test]#vim group
》:r /etc/group
》:g/#/d
》wq
将/etc/ssh/sshd_coonfig读入/test/sshd_config,只保留root开头的行内容
[root@localhost test]#vim sshd_config
》:r /etc/ssh/sshd_coonfig
》:set number
》insert
》17 Port 22
》wq
将/test/sshd_config文件中的第40-50行的yes改为no
[root@localhost test]#vim sshd_config
》:40,50 s/yes/no/g
》:wq
将/test/sshd_config文件另存为/test/sshd.conf
[root@localhost test]#vim sshd_config
》:w /test/sshd.conf
》:wq
将/test目录下的passwd,group,bashrc文件中的第一行内容复制至文档最后一行
[root@localhost test]#vim passwd
思路:
1、先显示行号
》:set number
2、复制
    单行复制》:1 co n
    多行复制》:1,2 co n
其中1,2代表一到二行,也就是前两行,n是要复制到的行数


http://www.ppmy.cn/news/334621.html

相关文章

火遍全网的杠精哥配音怎么制作?

火遍全网的杠精哥配音怎么制作?搞怪配杠精哥配音制作教程来啦 沙雕动画配音大家都看过吧?盘点这些搞笑视频爆品,这些沙雕的剧情,独特的声音,使观众看完,要么是捧腹大笑,要么是一脸懵逼怀疑人生…

哥离职啦

亲爱的同事们: 亲爱的各位同事,哥要离职啦。由于职业习惯中的“受虐狂”倾向,决定再下江湖,玩玩久违的“碰壁”游戏。当然也不排除另一个理由:遍寻公司,没有找到一个可以暧味的MM,所以另…

【Mysql系列】mysql执行sql脚本

💝💝💝欢迎来到我的博客,很高兴能够在这里和您见面!希望您在这里可以感受到一份轻松愉快的氛围,不仅可以获得有趣的内容和知识,也可以畅所欲言、分享您的想法和见解。 推荐:kuan 的首页,持续学…

2019 自我总结

1.引言 今年应该是进入大学以来,最为丰富的一年,也是收获最多的一年。 2.学习 进入2019年,我首先参加的应该是美国大学生数学建模竞赛,比赛前前后后经过了十几天。这一次比赛应该是我经历过最辛苦的一次,首先经过了培…

卢本伟牛逼

这里写自定义目录标题 欢迎使用Markdown编辑器新的改变功能快捷键合理的创建标题,有助于目录的生成如何改变文本的样式插入链接与图片如何插入一段漂亮的代码片生成一个适合你的列表创建一个表格设定内容居中、居左、居右SmartyPants 创建一个自定义列表如何创建一个…

杀疯了。。。

一直有小伙伴问我推荐 Java 进阶课程,今天给大家推荐一个 Spring Cloud Alibaba 微服务实战课,出自《Java技术栈》号主,和我一样,也都是老程序员了,课程质量没得说,一次订阅,还提供永久免费提供…

我么们,看看这JAVA的“骚操作” ?。?>_> ?。?

java中,>>———>>只分为成员变量和局部变量。 成员变量:Static修饰成为类变量或静态变量,还有就是方法外的变量。 局部变量:就是方法中的变量。 U_______!。!________U 所以使用static 关键字进行声明的变量叫做全局…

Mac下使用Anaconda创建新环境并安装conda没有的包

记录一下汗水历程(>﹏<) 今天想在anaconda中创建新环境并使用streamlit包&#xff0c;先在base默认环境中装了一个&#xff0c;直接在anaconda navigator中点击base上的三角形&#xff0c;选择open terminal 然后跳出终端&#xff0c;输入conda install streamlit&#…