mirror of
https://github.com/kforney/pentest-distro-builder.git
synced 2024-11-21 09:40:10 -07:00
10 lines
263 B
Bash
Executable file
10 lines
263 B
Bash
Executable file
#!/bin/bash
|
|
|
|
#Discord
|
|
wget -O ../build/discord.deb "https://discordapp.com/api/download?platform=linux&format=deb"
|
|
|
|
#Slack
|
|
wget -O ../build/slack.deb "https://downloads.slack-edge.com/linux_releases/slack-desktop-4.2.0-amd64.deb"
|
|
|
|
dpkg-name ../build/*.deb
|
|
exit 0
|