60

Apt-get install *

Just don't do it. It's not worth it!

Comments
  • 4
    Hahahahahahahhaha laughing
  • 5
    @linuxer4fun xD lets also go for sudo rm-rf /*. *
  • 1
    @linuxer4fun how about sudo apt remove *
  • 2
    Does that install everything!
  • 1
    @linuxer4fun I like it I'll let you know how it goes lol
  • 1
    Lets set up this vm :') ill do it eventually lets keep in touch :)
  • 3
    @Bobj2008 yes, it does :)
  • 8
    It's incredible that someone programmed these commands. "let's add the possibility to install all the repository! Someone could find it useful"
  • 9
    @crisz nobody programmed it, it's part of the globbing syntax. You can do apt-get install "libsdl*" or something too, it's more useful then.
  • 5
    @Paramite you'll find all your storage goes pretty quickly. I hope you're not tethering from your phone, could be costly ;)
  • 2
    Can somebody tell me after the try how many GB of memory it will take 😁
  • 2
    What a gem!
  • 1
    I think it would print the size of all of the packages together, then ask you to confirm the downloads before actually doing so. (I doubt it would even make it that far though!) Adding the switch -y will bypass the confirmation and then things would get really messy, really quick! Might have to fire up a VM and try it later...
  • 1
    Is there a -y option with apt-get ? (I'm a yum guy)

    Evil laugh..
  • 0
    @DarkMukke Good call. I'm a yum guy too, that's why I thought of the -y option! I just assumed it was there.. But after checking the man page it looks like it's there for apt-get also.
  • 0
    @DarkMukke yup there is
  • 0
    oh no! I use dnf command!!
  • 2
    I hate to be the showstopper but this will not work. The asterisk will be replaced by any file or folder in the path the command is entered in.
  • 1
    @r4nter Damn, you're totally right. Completely forgot about installing local packages.
  • 1
    You are a greedy bastard
  • 0
    what about
    apt-get search * | xargs apt-get install -y
Add Comment