mirror of
https://github.com/zardus/ctf-tools
synced 2025-03-15 22:37:10 +00:00
8 lines
192 B
Bash
Executable file
8 lines
192 B
Bash
Executable file
#!/bin/bash -ex
|
|
|
|
sudo apt-get -y install python3-dev 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
|