Page 5 of 9 FirstFirst ... 34567 ... LastLast
Results 41 to 50 of 83

Thread: In defence of the Command Line Interface

  1. #41
    Join Date
    Nov 2007
    Location
    England
    Beans
    731
    Distro
    Ubuntu 11.10 Oneiric Ocelot

    Re: In defence of the Command Line Interface

    But that script can be used over and over again. 30mins to write it, 30 seconds to apply its functionality to thousands of images.
    Oh come one!!! You are right, that will work well for 1,000 images that ALL require the same processing, but if you want make a lot of different changes to lots of different files, GUI is the way to go.

    Oh dear.. someone else who wants everything done for them. If you want to do it, learn, don't just ask for a script, ask for help.
    Really. Perhaps you didn't read my other posts. I can write bash, py and other scripts I administer a SCO UNIX box for a living so the lack of a GUI ain't a problem to me. I was merely pointing out that tasks such as image editing are easier using a GUI. I don't need a script for that, I have GIMP.
    Want an alternative to 99% of Windows applications?
    http://www.osalt.com/

    "Dude, real programmers compile" - Plato 428BC

  2. #42
    Join Date
    Jun 2007
    Location
    The Mistake by the Lake
    Beans
    1,813

    Re: In defence of the Command Line Interface

    Command lines are for servers, and administrators. There is no reason a user would ever want to, or have to use a Command line. This is reason why the GUI was such a popular innovation, and why it is so widely used. It allows people with limited knowledge of computers to be productive with them. The myth that you have to know the CLI to use Linux needs to be killed already.
    Quote Originally Posted by Homer J. Simpson
    "Dinner is the perfect break between work, and drunk."


  3. #43
    Join Date
    Sep 2009
    Beans
    Hidden!
    Distro
    Ubuntu 10.10 Maverick Meerkat

    Re: In defence of the Command Line Interface

    Quote Originally Posted by marshmallow1304 View Post
    Only in some countries (the ones with very silly laws).



    The CLI is for whoever wants to put in the effort to learn how to use it. For those people, server admins or not, the CLI is a fast, useful, and flexible tool.



    If I have a bunch of files of many different types in a folder and I want to move all the mp3s to a music folder; which is faster - going through the folder in nautilus while holding Ctrl and clicking all the mp3s, then dragging them to the music folder or
    Code:
    mv ~/somefiles/*.mp3 ~/Music


    Nooo LOL its easier to drag and drop the file instead of writing a whole novel to accomplish a simple task LOL!!
    who uses the CLI today anyway? Only 5% of computer users use it + businesses.
    Last edited by sudoer541; May 6th, 2010 at 07:18 PM.

  4. #44

    Re: In defence of the Command Line Interface

    Fear the CLI.
    Attached Images Attached Images
    Ubuntu user #7247 :: Linux user #409907
    inconsolation.wordpress.com

  5. #45
    Join Date
    Jan 2008
    Beans
    4,305

    Re: In defence of the Command Line Interface

    CLI is amazing. I was astounded how intuitive it is when the basics are mastered.

  6. #46
    qamelian's Avatar
    qamelian is offline Iced Blended Vanilla Crème Ubuntu
    Join Date
    Feb 2005
    Location
    Nova Scotia, Canada
    Beans
    1,580
    Distro
    Ubuntu Development Release

    Re: In defence of the Command Line Interface

    Quote Originally Posted by swoll1980 View Post
    Command lines are for servers, and administrators. There is no reason a user would ever want to, or have to use a Command line. This is reason why the GUI was such a popular innovation, and why it is so widely used. It allows people with limited knowledge of computers to be productive with them. The myth that you have to know the CLI to use Linux needs to be killed already.
    Well, that's just wrong. Even when I'm just in end-user mode, I still make use of the CLI for a lot of things because for some tasks it really is better or faster than a GUI. If doing some thing via point & click is going to take me measurably longer than doing the same task via CLI, you can bet I'm going command line. Some task really do lend themselves better to one interface method over the other, and GUI is not always the best tool for the job. It might be what you're most comfortable with, but that doesn't mean it's the best tool.

  7. #47
    Join Date
    Jan 2008
    Location
    Manchester UK
    Beans
    13,573
    Distro
    Ubuntu

    Re: In defence of the Command Line Interface

    What about if you wanted to move every .flac file in your Home directory where ever it is to a backup drive called /media/music

    Code:
    find ~/ -name *.flac -exec mv '{}' /media/music/ \;
    That`s got to be quicker than doing it manually, however slow you type.

    Or remove every file in your mp3 directory that is not an mp3
    Code:
    find /media/music/mp3 -type f \! -name "*.mp3" -exec rm '{}' \;
    That is not a novel, but you could have read one while you did it with your mouse if your mp3 directory is big enough.

  8. #48
    Join Date
    May 2007
    Location
    albuquerque
    Beans
    581
    Distro
    Kubuntu 20.04 Focal Fossa

    Re: In defence of the Command Line Interface

    Quote Originally Posted by swoll1980 View Post
    Command lines are for servers, and administrators. There is no reason a user would ever want to, or have to use a Command line.
    Well, on my computer, I am both the only user and the only administrator. I'm glad that I have both CLI and GUI options.

    Quote Originally Posted by swoll1980 View Post
    The myth that you have to know the CLI to use Linux needs to be killed already.
    I don't think you necessarily have to know the CLI to use Linux, but it certainly helps. It makes life easier to be able to go back and forth between GUI and CLI in Linux, whenever you need or want to use one or the other. Being able to use the CLI gives you more tools at your disposal. I find it hard to understand why anyone would not be able to see that, unless they have just never taken the time to learn to use the CLI, for whatever reason.


    Quote Originally Posted by marshmallow1304 View Post
    The CLI is for whoever wants to put in the effort to learn how to use it. For those people, server admins or not, the CLI is a fast, useful, and flexible tool.
    Yep.

  9. #49
    Join Date
    May 2007
    Location
    albuquerque
    Beans
    581
    Distro
    Kubuntu 20.04 Focal Fossa

    Re: In defence of the Command Line Interface

    In Linux, you have this great tool (CLI) at your fingertips. If you want to ignore it, that's your choice... but those people who take the time to learn to use it are better off, no matter what GUI-only people think.

  10. #50
    Join Date
    Nov 2007
    Location
    England
    Beans
    731
    Distro
    Ubuntu 11.10 Oneiric Ocelot

    Re: In defence of the Command Line Interface

    Quote Originally Posted by nothingspecial View Post
    What about if you wanted to move every .flac file in your Home directory where ever it is to a backup drive called /media/music

    Code:
    find ~/ -name *.flac -exec mv '{}' /media/music/ \;
    That`s got to be quicker than doing it manually, however slow you type.

    Or remove every file in your mp3 directory that is not an mp3
    Code:
    find /media/music/mp3 -type f \! -name "*.mp3" -exec rm '{}' \;
    That is not a novel, but you could have read one while you did it with your mouse if your mp3 directory is big enough.
    All the "batch" type examples are great, however, I bet a can create a complex graphic svg file with text and fades in Inkscape faster than creating it using the CLI, or am I wrong?

    Totally right about moving files etc, much faster using CLI
    Want an alternative to 99% of Windows applications?
    http://www.osalt.com/

    "Dude, real programmers compile" - Plato 428BC

Page 5 of 9 FirstFirst ... 34567 ... LastLast

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •