码迷,mamicode.com
首页 > 其他好文 > 详细

2016/7/29作业

时间:2016-08-03 15:45:08      阅读:206      评论:0      收藏:0      [点我收藏+]

标签:作业

1.file1文件的内容为:”1 2 3 4 5 6 7 8 9 10” 计算出所有数字的总和

[root@centos6 ~]# echo "1 2 3 4 5 6 7 8 9 10" >file1
[root@centos6 ~]# cat file1 | tr ‘ ‘ ‘+‘ | bc
55

2.处理字符串“xt.,l 1 jr#!$mn2 c*/fe3 uz4”,只保留其中的数字和空格

[root@centos6 ~]# echo "xt,. 1 jr#trmn2 c*/fe3 uz4" >file2
[root@centos6 ~]# cat file2 | tr -d [[:alpha:]][[:punct:]]
 1 2 3 4

3.将PATH变量每个目录显示在独立的一行

[root@centos6 ~]# echo $PATH
/usr/lib64/qt-3.3/bin:/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin:/root/bin
[root@centos6 ~]# echo $PATH | tr ‘:‘ ‘\n‘
/usr/lib64/qt-3.3/bin
/usr/local/sbin
/usr/local/bin
/sbin
/bin
/usr/sbin
/usr/bin
/root/bin

4.删除指定文件的空行

[root@centos6 ~]# nano f12
[root@centos6 ~]# tr -s ‘\n‘ < f12
shulei 
123124
21312312
21312321

5.将文件中每个单词(字母)显示在独立的一行,并无空行

[root@centos6 ~]# tr ‘ ‘ ‘\n‘ < /etc/issue | tr -s ‘\n‘
CentOS
release
6.8
(Final)
Kernel
\r
on
an
\m
The
system
\n
\l
\t

 

6.创建用户gentoo,附加组为bin和root,默认shell为/bin/csh,注释信息为"Gentoo Distribution"
    创建下面的用户、组和组成员关系
    名字为admins 的组
    用户natasha,使用admins 作为附属组
    用户harry,也使用admins 作为附属组
    用户sarah,不可交互登录系统,且不是admins 的成员,natasha,harry,sarah密码都是centos

[root@centos6 ~]# useradd -G bin,root -s /bin/csh -c "Gentoo Distribution" gento
[root@centos6 ~]# getent passwd gentoo
gentoo:x:501:501:Gentoo D:/home/gentoo:/bin/csh
[root@centos6 ~]# groups gentoo
gentoo : gentoo root bin
[root@centos6 ~]# useradd -G admins natasha
[root@centos6 ~]# useradd -G admins harry
[root@centos6 ~]# useradd -s /sbin/nologin sarah
[root@centos6 ~]# echo ‘centos‘ | passwd --stdin natasha
Changing password for user natasha.
passwd: all authentication tokens updated successfully.
[root@centos6 ~]# echo ‘centos‘ | passwd --stdin harry
Changing password for user harry.
passwd: all authentication tokens updated successfully.
[root@centos6 ~]# echo ‘centos‘ | passwd --stdin sarah
Changing password for user sarah.
passwd: all authentication tokens updated successfully.

 

2016/7/29作业

标签:作业

原文地址:http://leishu.blog.51cto.com/11901622/1833793

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!