less is more - avoid cat to grep something. (#6383)

This commit is contained in:
Gionni 2018-04-06 20:07:06 +02:00 committed by Gwendolynne Barr
parent 9a3a4e5a4b
commit 5bb6473a72
1 changed files with 1 additions and 1 deletions

View File

@ -14,7 +14,7 @@ kernel is configured with `CONFIG_SECCOMP` enabled. To check if your kernel
supports `seccomp`:
```bash
$ cat /boot/config-`uname -r` | grep CONFIG_SECCOMP=
$ grep CONFIG_SECCOMP= /boot/config-$(uname -r)
CONFIG_SECCOMP=y
```