Kaynağa Gözat

Merge pull request #4 from TheadoraTang/patch-1

Create 10215501437.sh
main
Eugene Zhu 2 yıl önce
işlemeyi yapan: GitHub
ebeveyn
işleme
7c40db9b0f
Veri tabanında bu imza için bilinen anahtar bulunamadı GPG Anahtar Kimliği: 4AEE18F83AFDEB23
1 değiştirilmiş dosya ile 15 ekleme ve 0 silme
  1. +15
    -0
      lab1/10215501437.sh

+ 15
- 0
lab1/10215501437.sh Dosyayı Görüntüle

@ -0,0 +1,15 @@
#!/bash/bin
#生成随机字符串
for i in `seq 1000`;do echo $RANDOM | md5sum | cut -c 1-9 ;done > test.txt
#按照字母顺序排列,输出unique行
sort -u test.txt | uniq
#按照数字顺序排列,输出unique行
sort -u -n test.txt | uniq
#以覆盖写的方式重定向到一个文件
sort -u test.txt | uniq > ans1
sort -u -n test.txt | uniq > ans1
#以追加写的方式重定向到一个文件
sort -u test.txt | uniq >> ans1
sort -u -n test.txt | uniq >> ans1
#寻找to
grep -wo "to" test2.txt | wc-l

Yükleniyor…
İptal
Kaydet