소스 검색

Merge pull request #2 from Turrrdidae/main

homework1
main
Eugene Zhu 2 년 전
committed by GitHub
부모
커밋
7ccc387332
No known key found for this signature in database GPG 키 ID: 4AEE18F83AFDEB23
1개의 변경된 파일30개의 추가작업 그리고 0개의 파일을 삭제
  1. +30
    -0
      lab1/10215501432.sh

+ 30
- 0
lab1/10215501432.sh 파일 보기

@ -0,0 +1,30 @@
#!/bin/bash
for i in `seq 1000`;do echo $RANDOM | md5sum | cut -c 1-9 ;done > test.txt
sort -u test.txt
#按字母排序,并输出unique行
echo -e "\n"
#美观的空行
sort -n -u test.txt
#按数字排序,并输出unique行
sort -u test.txt > result1.txt
#以覆盖写的方式重定向
sort -u test.txt >> result2.txt
#以追加写的方式重定向
sort -n -u test.txt > resultn1.txt
#以覆盖写的方式重定向按数字排序
sort -n -u test.txt >> resultn2.txt
#以追加写的方式重定向按数字排序
#在这里已经手动创建了一个article.txt,内含一段文字
grep -wo "the" article.txt |wc -l
#查找the并输出总数

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