mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2026-06-07 04:31:42 +00:00
11 lines
264 B
Bash
Executable File
11 lines
264 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# Iceman 2022
|
|
#
|
|
# This script is to be run from proxmark root folder inside the docker env
|
|
# docker/kali/run_tests.sh;
|
|
|
|
sudo apt update && sudo apt upgrade -y
|
|
tools/release_tests.sh
|
|
# beeps
|
|
for ((i=0; i<10;i++)) do echo -e "\a";sleep 0.3; done
|