Skip to content

Commit

Permalink
Add Free Download Manager (#3)
Browse files Browse the repository at this point in the history
  • Loading branch information
mahdihasnat committed Nov 7, 2024
1 parent 1863761 commit a4dbbd9
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions scripts/fdm.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
#!/bin/bash

set -eux

echo "\nInstalling Free Download Manager ...\n"

echo "Downloading Free Download Manager ..."
wget -O fdm.deb https://files2.freedownloadmanager.org/6/latest/freedownloadmanager.deb

echo "Extracting fdm.deb ..."
sudo dpkg -i fdm.deb

echo "Installing Free Download Manager ..."
sudo apt-get install -f -y

echo "Removing fdm.deb ..."
rm fdm.deb

0 comments on commit a4dbbd9

Please sign in to comment.