this post was submitted on 22 Feb 2026
209 points (98.6% liked)

Linux

63183 readers
1116 users here now

From Wikipedia, the free encyclopedia

Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).

Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word "Linux" in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.

Rules

Related Communities

Community icon by Alpár-Etele Méder, licensed under CC BY 3.0

founded 6 years ago
MODERATORS
 

made it so i just click file and paste YouTube url

Linux is amazing

#! /usr/bin/bash
echo "Enter a url"
read a

yt-dlp -x $a
you are viewing a single comment's thread
view the rest of the comments
[–] hoppolito@mander.xyz 66 points 1 day ago (2 children)

Very happy you had fun making the little script! One thing that will become important pretty quick if you continue making these scripts is that it’s almost always better to wrap your variables in quotes - so it becomes yt-dlp -x “$a”. It’s okay here but if you ever paste something that has a space in it, this will keep it together ‘as one’.

If you want to expand your knowledge with this, some fruitful paths to go down are the following:

  • can you find a way to download multiple urls one after the other if you paste them all at once? (Multiple arguments)
  • can you find a way to ask the user for these multiple urls one after the other? (loops)
  • and can you find a way to have it ask until you hit enter without a url pasted and only then it starts? (conditionals and test)

The last one is already quite a bit advanced but if you can do that you have enough of the ‘programming’ basics of the shell down to a degree that you can create many little helpers like this with ease.

Of course don’t feel forced to do any of that - if you’re happy with the improvement as-is, that’s all you need to enjoy the fun of Linux!

[–] RavenofDespair@lemmy.ml 2 points 1 day ago

Thanks might make it bigger now. The "$a" very helpful as I might copy url from web pages which may cause a error.

[–] Ephera@lemmy.ml 8 points 1 day ago* (last edited 1 day ago) (1 children)

One thing that will become important pretty quick if you continue making these scripts is that it’s almost always better to wrap your variables in quotes - so it becomes yt-dlp -x “$a”.

Oh man, this reminds me of the joke that any program that's more complex than Hello World has bugs – and folks still don't even agree how to spell "Hello, World!".

Of course, Bash is a particular minefield in this regard...

[–] 18107@aussie.zone 16 points 1 day ago (1 children)

I once wrote a 2 line, 10 word script that had 9 bugs in it. I'm not overly proud of that one.

[–] draco_aeneus@mander.xyz 5 points 1 day ago

I think you might have a career as an accomplished entymologist ahead of you with so much success finding bugs!