picoctf/misc/first_find/solve.sh

9 lines
144 B
Bash
Raw Normal View History

2024-09-05 18:58:00 +02:00
#!/usr/bin/env nix-shell
#!nix-shell -i bash -p bash unzip
unzip -o -q files.zip
find files -name 'uber-secret.txt' | xargs cat
rm -rf files