소스 검색

添加 'lab1/10215501435.sh'

master
杨茜雅 2 년 전
부모
커밋
c173c2f160
1개의 변경된 파일23개의 추가작업 그리고 0개의 파일을 삭제
  1. +23
    -0
      lab1/10215501435.sh

+ 23
- 0
lab1/10215501435.sh 파일 보기

@ -0,0 +1,23 @@
#!/bin/bash
#生成50行随机字符串
for i in {1..50}
do
echo $RANDOM | md5sum | cut -c 1-9 >> random_50.txt
done
#将上述50行随机的字符串循环100次,得到5000行有规律的字符串
times=1
while((times<=100))
do
head -n 50 random_50.txt >> random_5000.txt
times=`expr $times + 1`
done
#以覆盖写的方式,字母排序,输出unique行
sort -u random_5000.txt > alph.txt
#以覆盖写的方式,数字排序,输出unique行
sort -u -n random_5000.txt > number.txt
#以追加写的方式,字母排序,输出unique行
sort -u random_5000.txt >> alph.txt
#以追加写的方式,数字排序,输出unique行
sort -u -n random_5000.txt >> number.txt
#已经生成一个含有60个Computer的letter文件
grep -c "Computer" letter.txt

불러오는 중...
취소
저장