이 웹사이트는 자바스크립트 활성화가 필요합니다.
홈
탐색
帮助
返回水杉在线
登录水杉在线
登录水杉码园
10205304463
/
Computer-Systems-Labs
보기
1
좋아요
0
포크
0
코드
이슈
0
풀 리퀘스트
0
릴리즈
0
위키
활동
소스 검색
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 년 전
부모
af937dc63d
e8e5030504
커밋
95a6ad57ff
1개의 변경된 파일
과
15개의 추가작업
그리고
0개의 파일을 삭제
분할 보기
Diff Options
Show Stats
Download Patch File
Download Diff File
+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
쓰기
미리보기
불러오는 중...
취소
저장