This website works better with JavaScript.
首頁
探索
帮助
返回水杉在线
登录水杉在线
登录水杉码园
10215501450
/
Computer-Systems-Labs
關註
1
收藏
0
複製
0
程式碼
問題管理
0
合併請求
0
版本發佈
0
Wiki
Activity
瀏覽代碼
10215501415
master
龙羿霏
2 年之前
父節點
8488a65502
當前提交
e8e5030504
共有
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
Write
Preview
Loading…
取消
儲存