this post was submitted on 08 Jul 2024
4 points (100.0% liked)

Freedom in Mobile Computing

36 readers
2 users here now

/c/LibreMobile is a community for discussion of Free (Libre) Software in the mobile space, including Android and non-Android Linux-based OS’s.

Please don’t discuss, promote, advocate, advertise, or ask for help with proprietary software in this community. This includes using libre software with the purpose of enabling proprietary software (such as microG, Aurora Store, sandboxes, etc).

Proprietary apps are still proprietary even if they have no trackers or a nice-sounding privacy policy.

founded 2 years ago
MODERATORS
 

Can anyone recommend a download manager for AOS 5 that can accept as input a list of URLs? This is what I’ve tried:

  • GigaGet (must hand-type each URL manually)
  • Download Navi (must hand-type each URL manually)
  • Aria2App (strangely, it apparently needs a server and cannot simply fetch files directly)

/cc @[email protected] #askFedi

top 1 comments
sorted by: hot top controversial new old
[–] [email protected] 1 points 2 months ago* (last edited 2 months ago)

If Termux is an option then wget can do this. wget -i <file> reads a list of URLs from <file>. wget -i - reads a list of URLs from standard in.

Note that Termux comes with a wget command from busybox that doesn't have this option, so you'd need the full GNU Wget which can be installed by pkg install wget