mirror of
https://github.com/zardus/ctf-tools
synced 2024-11-13 01:17:05 +00:00
8 lines
214 B
Bash
Executable file
8 lines
214 B
Bash
Executable file
#!/bin/bash -ex
|
|
|
|
sudo apt-get -y install python-dev python3-dev python-pip python3-pip \
|
|
libglib2.0-dev libc6-dbg
|
|
|
|
if uname -m | grep x86_64 > /dev/null; then
|
|
sudo apt-get install libc6-dbg:i386 || true
|
|
fi
|