1.file1文件的内容为“1 2 3 4 5 6 7 8 9 10”计算所有数字的总和
[root@localhost testdir]# echo '1 2 3 4 5 6 7 8 9 10'>file1
[root@localhost testdir]# cat file1
1 2 3 4 5 6 7 8 9 10
[root@localhost testdir]# tr ' ' '+'<file1 | bc
55
2.处理字符串“xt.,l 1 jr#!$mn2 c*/fe3 uz4”,只保留其中的数字和空格
echo 'xt.,l 1 jrecho xt.,l 1 jrmn2 c*/fe3 uz4'|tr -d '[[:alpha:]]'|tr -d '[[:punct:]]'
3.将PATH变量的每个目录显示为独立的一行
echo $PATH | tr ":" "\n"
4. 删除指定文件的空行
cat /testdir/test8|tr -d '[[:space:]]'
5.将文件中的每个单词(字母)显示在独立的一行,并无空行
echo 'This is a test'|tr -s ' ' '\n' # 上面不加参数选项的功作为对比,方便理解参数的作用。
6.
useradd -G bin,root -s /bin/csh -c "Gentoo Distribution" gentoo