Skip to content

Commit

Permalink
Small content update
Browse files Browse the repository at this point in the history
  • Loading branch information
qizhengzhong11 committed Nov 8, 2020
1 parent d9b2ac5 commit 5b8e52f
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 1 deletion.
2 changes: 1 addition & 1 deletion docs/notes/Java 基础.md
Expand Up @@ -1429,7 +1429,7 @@ public class Box<T> {
}
```

- [Java 泛型详解](http://www.importnew.com/24029.html)
- [Java 泛型详解](https://www.cnblogs.com/Blue-Keroro/p/8875898.html)
- [10Java 泛型面试题](https://cloud.tencent.com/developer/article/1033693)

# 十、注解
Expand Down
1 change: 1 addition & 0 deletions docs/notes/Java 并发.md
Expand Up @@ -611,6 +611,7 @@ public static void main(String[] args) {
WaitNotifyExample example = new WaitNotifyExample();
executorService.execute(() -> example.after());
executorService.execute(() -> example.before());
executorService.shutdown();
}
```

Expand Down
5 changes: 5 additions & 0 deletions docs/notes/Linux.md
Expand Up @@ -1075,6 +1075,11 @@ dmtsai tty1 Fri May 29 11:55 - 12:11 (00:15)

```html
$ last -n 5 | awk '{print $1 "\t" $3}'
dmtsai 192.168.1.100
dmtsai 192.168.1.100
dmtsai 192.168.1.100
dmtsai 192.168.1.100
dmtsai Fri
```

可以根据字段的某些条件进行匹配,例如匹配字段小于某个值的那行数据。
Expand Down

0 comments on commit 5b8e52f

Please sign in to comment.