Skip to content

Commit 48947df

Browse files
committed
'修正'
1 parent 17fb30b commit 48947df

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

面试/笔试题.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,8 @@ cat access.log | awk '{arr[$4]++} END {for(i in arr) {print arr[i],$0}}' | sort
8181
b、列出早上10点访问量做多的20个url地址?
8282

8383
```shell
84-
84+
cat access.log| awk '/2017:16/{arr[$1]++} END{ for(i in arr) {print ar
85+
r[i],i}}' | sort -rn | head -20
8586
```
8687

8788
6、**csrf和xss的区别**

0 commit comments

Comments
 (0)