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