9 lines
144 B
Bash
9 lines
144 B
Bash
|
#!/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
|