blob: 2507208f5c1a5a049de753ec8531a4e57dcb44e0 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
# challenge 170
The following should work on most Linux distros, but it didn't for me on NixOS:
```shell
chmod u+x ./warm
./warm -h
```
So instead, just call `strings` on the exectuable to search for the help text,
which contains the flag.
|