浏览代码

Merge pull request '10215501415' (#9) from 10215501415/Computer-Systems-Labs:master into master

Reviewed-on: https://gitea.shuishan.net.cn/52265903006/Computer-Systems-Labs/pulls/9
master
朱君鹏 2 年前
父节点
当前提交
95a6ad57ff
共有 1 个文件被更改,包括 15 次插入0 次删除
  1. +15
    -0
      lab1/10215501415.sh

+ 15
- 0
lab1/10215501415.sh 查看文件

@ -0,0 +1,15 @@
#两个字符串文件均由python生成
#按数字排序
#覆盖写
cat hw1.txt | sort | uniq -d > 1.txt
cat hw1.txt | sort -n | uniq -d > 1.txt
#追加写
cat hw1.txt | sort | uniq -d >> 2.txt
cat hw1.txt | sort -n | uniq -d >> 2.txt
#找出指定字符串
grep computer hw1-2.txt
grep -c computer hw1-2.txt

正在加载...
取消
保存