钱凯恒 1 год назад
Родитель
Сommit
462cd19f46
1 измененных файлов: 13 добавлений и 0 удалений
  1. +13
    -0
      lab1/10215501406.txt

+ 13
- 0
lab1/10215501406.txt Просмотреть файл

@ -0,0 +1,13 @@
#1
for i in `seq 50000`;do echo $RANDOM | md5sum | cut -c 1-9 ;done > 1.txt
sort -d 1.txt | uniq
sort -n 1.txt | uniq
sort -d 1.txt | uniq > 1_uniq1.txt
sort -n 1.txt | uniq > 1_uniq1.txt
sort -d 1.txt | uniq >> 1_uniq2.txt
sort -n 1.txt | uniq >> 1_uniq2.txt
#2
for i in `seq 50000`;do echo $RANDOM | md5sum | cut -c 1-9 ;done > 2.txt
grep 'computer' 2.txt
grep -o 'computer' 2.txt | wc -l

Загрузка…
Отмена
Сохранить