1、每天上课总结笔记
2、软硬链接区别
答:1.硬连接创建,相当于创建多个文件名指向硬盘存储inode位置,删除其中一个,文件内容还在。而软连接创建,相当于创建一个快捷方式指向文件位置,删除文件,连接会有颜色提示。
2.硬连创建,连接数会加1,而软连创建接数不会加1
3、预习
4、pdf练习
5、file1文件的内容为:”1 2 3 4 5 6 7 8 9 10” 计算出所有数字的总和
[[email protected] opt]# cat sum | tr -d ‘"‘ | tr ‘ ‘ ‘+‘ |bc
6、处理字符串“xt.,l 1 jr#!$mn2 c*/fe3 uz4”,只保留其中的数字和空格
[[email protected] opt]# cat sum | tr -d ‘[[:alpha:]][[:punct:]]‘
7、将PATH变量每个目录显示在独立的一行
[[email protected] opt]# echo $PATH | tr ‘:‘ ‘\n‘
8、删除指定文件的空行
[[email protected] opt]# cat sum | tr -s [[:space:]]
[[email protected] opt]# cat sum | tr -s ‘\n‘
9、将文件中每个单词(字母)显示在独立的一行,并无空行
随便找了个文件:
10、创建用户gentoo,附加组为bin和root,默认shell为/bin/csh,注释信息为"Gentoo Distribution"
[[email protected] ~]# useradd -c "Gentoo Dstribution" -G bin,root --shell=/bin/csh gentoo
时间: 2024-10-28 11:13:39