pentest-distro-builder/debs/get-debs.sh
Kaj Forney 9ffb070193 Download debs at runtime, don't include them .
Former-commit-id: 5ce20813798818dae9808e3fb7c94bd35d5be97e
Former-commit-id: c1b3dea0bda6a51f653280dcbcebf00559f892bf
2019-08-27 14:18:49 -06:00

15 lines
465 B
Bash
Executable file

#!/bin/bash
#Discord
wget -O discord.deb "https://discordapp.com/api/download?platform=linux&format=deb"
#Resilio Sync
wget -O resilio.deb "https://download-cdn.resilio.com/2.6.3/Debian/resilio-sync_2.6.3-1_amd64.deb"
#VS Code (OSS)
wget -O code.deb "https://github.com/VSCodium/vscodium/releases/download/1.37.1/codium_1.37.1-1565952268_amd64.deb"
#Slack
wget -O slack.deb "https://downloads.slack-edge.com/linux_releases/slack-desktop-4.0.2-amd64.deb"
exit 0