Please can we talk about that instead? I am not so interested read a list of actions which this author believes are superior to be performed using the CLI.
You Don't Need a GUI
131–140 of 439 posts
Re: You Don't Need a GUI
#132Its a clone or the old Norton Commander which uses a termnal (curses based software) to create a kind of file browsing /copying/ moving tool. I like it because I know it, and its easy to browse through directories and veiw the files using a keyboard.
A breif guide with some screenshots: https://www.linode.com/docs/guides/how-to-install-midnight-c...
Re: You Don't Need a GUI
#133GUI is better for discoverability of the most common scenarios (I can right-click to see everything that can be done with the file, including some third party programs). But it's bad for composing programs and interoperability, often it's impossible or very hard to automate (how many people are doing UI testing? there is a good reason it's not many -- it completely sucks) TUI/console is very good for interoperability…
(TUIs are, or can be, GUIs with box drawing characters instead of pixel displays. They're not necessarily any more scriptable or any less discoverable; however, a TUI on top of a command line, like Norton Commander or Midnight Commander, can be a real winner of a design paradigm.)
Re: You Don't Need a GUI
#134Once learned the GUI actions are impossible to forget. Being away from the computer for two weeks will make you forget 80% of the CLI commands from the author's list. The reason is simple: the brain can associate the GUI actions to many concepts from the real world. CLI concepts exist on computers and nowhere else. That knowledge is too abstract and too expensive to be kept unused in our brain's cache non-stop.
> Being away from the computer for two weeks will make you forget 80% of the CLI commands from the author's list. Sweet Jesus, the GUI lovers in this discussion really need to learn how to use computers. I have a text file that includes several thousand commands that I have run during the past 20+ years. In one column there are the commands with placeholders, and in the other column there are descriptions of the comm…
You are so incredibly out of touch with regular human beings.
Re: You Don't Need a GUI
#135Re: You Don't Need a GUI
#136 dir /s graph.db
to find any occurrence of graph.db in any subdirectory|The linux equivalent seems to be
tree -f | grep -i graph\.db
However, this seems to be taking approximately foreverEdit - 20 minutes later, still not done, is this an O(N^2) operation? Edit - 35 minutes later, the wrong regex... have to do it again
tree -f | grep graph.db
Re: You Don't Need a GUI
#137GUI is better for discoverability of the most common scenarios (I can right-click to see everything that can be done with the file, including some third party programs). But it's bad for composing programs and interoperability, often it's impossible or very hard to automate (how many people are doing UI testing? there is a good reason it's not many -- it completely sucks) TUI/console is very good for interoperability…
Re: You Don't Need a GUI
#138Does anyone still use Midnight commander? (mc from the command line). I think its falling out of favor, but I think a lot of people don't know about it. Its a clone or the old Norton Commander which uses a termnal (curses based software) to create a kind of file browsing /copying/ moving tool. I like it because I know it, and its easy to browse through directories and veiw the files using a keyboard. A breif guide wi…
Re: You Don't Need a GUI
#139In Windows, you can do dir /s graph.db to find any occurrence of graph.db in any subdirectory| The linux equivalent seems to be tree -f | grep -i graph\.db However, this seems to be taking approximately forever Edit - 20 minutes later, still not done, is this an O(N^2) operation? Edit - 35 minutes later, the wrong regex... have to do it again tree -f | grep graph.db
find . -name graph.db