This website works better with JavaScript.
首頁
探索
帮助
返回水杉在线
登录水杉在线
登录水杉码园
10215501433
/
Computer-Systems-Labs
關註
1
收藏
0
複製
0
程式碼
問題管理
0
合併請求
0
版本發佈
0
Wiki
Activity
瀏覽代碼
Merge pull request '10215501451' (
#8
) from 10215501451/Computer-Systems-Labs:master into master
Reviewed-on:
https://gitea.shuishan.net.cn/52265903006/Computer-Systems-Labs/pulls/8
master
朱君鹏
2 年之前
父節點
2f6f15b8c0
ab03cf6d05
當前提交
6ecc4bbcde
共有
1 個文件被更改
,包括
21 次插入
和
0 次删除
分割檢視
Diff Options
Show Stats
Download Patch File
Download Diff File
+21
-0
10215501451.md
+ 21
- 0
10215501451.md
查看文件
@ -0,0 +1,21 @@
touch text1.txt
for i in
`seq 50000`
;do echo $RANDOM | md5sum | cut -c 1-9 ;done >> text1.txt
export LC_ALL=C
sort text1.txt | uniq
sort -n text1.txt | uniq
sort text1.txt | uniq > letter.txt
sort -n text1.txt | uniq >> number.txt
echo -e "computer\ndata\nscience\nengineering\nscience\nengineeringc\ncomputer\ncomputer\necnu\ndata" > text2.txt
grep computer text2.txt
grep -c computer text2.txt
Write
Preview
Loading…
取消
儲存