No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
 

12 líneas
507 B

#!/bin/bash
for i in `seq 1000`;do echo $RANDOM | md5sum | cut -c 1-9 ;done >> random1000.txt
#以覆盖写的方式,字母排序,输出unique行
sort -u random1000.txt > alph
#以覆盖写的方式,数字排序,输出unique行
sort -u -n random1000.txt > num
#以追加写的方式,字母排序,输出unique行
sort -u random1000.txt >> alph
#以追加写的方式,数字排序,输出unique行
sort -u -n random1000.txt >> num
#继续在里面查找coumputer
grep -c "Computer" random1000