Terminal in mac and linux

How does Mac’s command line compare to Linux?

I love Ubuntu Linux — especially the commmand line. But I have to admit that, at least for now, Windows is more user-friendly — there’s more software for it, more drivers, and more stuff just works. Knowing that Mac is built on Unix makes me wonder if it’s the sweet spot between them. But I wonder: how similar is the Mac command line to Linux’s bash? Could I pick right up with using vim and bash scripting and git, etc? Would common commands like changing directories be different? Does anybody know an online «compare and contrast» resource?

Dude — VmWare. I run an Ubuntu 18.04.4 virtual machine on top of Windows 10 on cheap but beefy server hardware. Everywhere I work hands me a four thousand dollar Macbook that I try to work on for a couple weeks until I want to throw it out a window due to shell differences. Then it becomes a nice paperweight.

They are different command lines, macOS has programs that linux doesn’t have an vice versa. Sometimes even for the same programs the syntax/options are different. This is why I tell people that getting a mac in order to have the same terminal as on linux but with better user experience may be a disappointment. lol. I’d rather use windows with pure linux through WSL.

6 Answers 6

Bash is bash so the shell and its built-ins are the same. But be aware that the behavior of some tools like ps or head can differ in the details thus your scripts might fail.

Bear in mind that this isn’t so much a Mac vs. Linux problem, rather than a various flavors of unix do things slightly different problem. You would find the same (actually more differences) between Linux and, for example, HP-UX.

You can standardize on the gnu binutils toolset across linux and OSX. Macports and homebrew will both install on OSX. This will at least standardize things like ls/tar/etc. ps is still OS dependent.

Mac OS X is a Unix OS and its command line is 99.9% the same as any Linux distribution. bash is your default shell and you can compile all of the same programs and utilities. There’s no notable difference. You can also find various projects like MacPorts which provide package management for Mac.

Читайте также:  Red hat linux courses

+1: the above is true. You may need to bear in mind weather your mac uses an intel or a powerpc processor when it comes to compiling code or using pre-built packages, i understand new macs are only intel but i may be wrong. typo @ w0rm: package* management. 🙂

Although your scripts will probably work for both Mac and Linux, it’s always wise to test them on both platforms. I’ve seen quite some (subtle) differences between linux distributions and even between different versions of the same linux version.

99.9% is not correct. OS X is a BSD variant and does not have GNU utilities. You can always install them but an a lot of commands have different options. It’s Unix but not Linux.

Indeed, this is an example of 100% bogus statistics. Depending on your use case the range is off the cuff something like 70%-100% but attempting to quantify this as a percentage is really just silly.

A couple things — it really depends on what you mean by command line.

  1. You’ll probably run bash, which will be the same as bash on any other UNIX. The bash programming language will be the same too — as long as it’s the same version. Bash versions have slight differences in the language, but this has nothing to do with MacOSX vs. Linux per se.

You may actually bump into this — /bin/bash on a Mac is pinned to 3.x for licensing reasons. You may find minor compatibility issues if you’re used to 4 or even 5.

  1. bash by itself is a small subset of ‘command line’. To be useful you typically use some other common UNIX utilities such as awk, or ls, or cut. Because of its history (it’s descended from BSD, not Linux or SystemV), the Mac versions of utilities will be different than the ones you’re used to on Linux (a.k.a. GNU versions). These will have at least some flag differences, and some output and functionality differences than Linux. Scripts that use these will have to be changed to compensate. BSD awk vs GNU gawk is pretty different. OR, you can get these GNU versions from macports or home brew, and set your PATH so that these are the defaults (over the built in versions).
  2. MacOS X also has some new cool tools. open is nice, it will open the object as if you double clicked it. defaults allows you to set some preferences, some not even in the GUI preferences panels. textutil can be useful and say can be fun.
Читайте также:  Gnu linux kernel source

It’s very similar, but if you know of any BSD v. Linux differences, expect the Mac to have the BSD behavior.

b/c the Mac OSX derived from a *nix kernel (NeXTSTEP based on BSD) that branched off of Unix earlier than Linux. Thus, they ended up w/ slightly different implementations of some utils. See en.wikipedia.org/wiki/MacOS

The command line functionality on Mac and Linux are indeed similar as OS X has a flavour of UNIX (called Darwin) underneath the GUI that you see.

The default shell on OS X is bash, so if you’re familiar with that you will adjust nicely.

On a Mac, the default command line application is Terminal. There are also a number of other emulators out there but overall Terminal provides a very similar look and feel to the shell you are used to in Linux.

The primary source of differences though are:

  • Different command line arguments at times (i.e. see du for example). The primary commands like cd or ls etc. are similar.
  • There are more parts of OS X that shouldn’t be edited by hand as you might do in Linux. This is a topic of its own, but just be aware that running a Mac is not exactly like running a Linux box in terms of configuration and upkeep.

That being said there are also a lot of cool hacks available from the command line in OS X (e.g. open commnand). There are lots of previous threads and blog posts out there with more info.

You can also get your hands on a bunch of opensource packages (i.e. git , hg , etc.) via MacPorts, Fink or a few other package management systems for OS X. You can also build other source packages intended for UNIX/Linux like systems as necessary.

Источник

what is the difference between terminal in Mac OS X and Ubuntu

Both Mac OS X and Ubuntu (and other Linus OS) has terminal / command line. Are these terminal identical across different OS? If not, what are the important difference?

2 Answers 2

A Terminal emulator provides an interface to run a shell, which again is an interface to access your operating system functions.

Terminals used to be real machines, e.g. a monitor with a keyboard attached, which sent your keystrokes to the actual computer at the other end, and receiving output from this computer. For example, the famous VT100:

Читайте также:  Настройка сетевой папки astra linux

enter image description here

Nowadays, this is emulated by those applications, like the Terminal.app on OS X, or GNOME Terminal for the GNOME graphical interface on Linux distributions.

As it’s decoupled from the shell that you can run (e.g. bash, zsh, . ), you are free to use any other terminal emulator. For example, on OS X, you can use iTerm 2, which offers a bit more than the normal terminal application.

As the terminal is the bridge between your GUI and the text-only shell, its functionality should go beyond accepting keyboard input and displaying output from the shell. A terminal should supply you with means of:

  • copying and pasting to the GUI
  • sending special commands to the shell (so called escape sequences; your terminal will for example map Cmd — Right Arrow to an appropriate shell sequence to go to the end of the line*)
  • allowing other shortcuts with hotkeys
  • allowing the shell to track the mouse
  • allowing multiple tabs with different shells running at the same time
  • allowing you to drag a file icon to the shell to get its real path
  • notifying the GUI of events (such as a blinking screen, or Growl output)
  • etc.

To sum it up: Different terminals offer different functionality with regards to how they interact with your operating system on the one hand, and the shell on the other hand. You can find a comparison of terminal emulators on Wikipedia.

That being said, there isn’t an important difference. Most people set up terminals to their liking, e.g. some like a transparent background, whereas others don’t. Some like them to display their shell black on white, others rather like it green on black.**
Some terminals allow you to set up different keyboard shortcut profiles, or even other profiles that launch different shells on startup, with a different windows size, etc.

* Note that this is a rather simplified statement. The terminal just needs to find a way to map special keys – especially on Macs, where there’s a Command key – to commands a shell can understand.

** This is also a functionality of the terminal: Displaying colors. You can actually tweak your terminal to show stuff the shell intended to be green as red instead. It’s primarily a matter of customization.

Источник

Оцените статью
Adblock
detector