12 lines
161 B
Bash
12 lines
161 B
Bash
|
#!/usr/bin/env nix-shell
|
||
|
#!nix-shell -i bash -p bash unzip git
|
||
|
|
||
|
unzip -o -q challenge.zip
|
||
|
pushd drop-in
|
||
|
|
||
|
git checkout HEAD~
|
||
|
cat message.txt
|
||
|
|
||
|
popd
|
||
|
rm -rf drop-in
|