What Can BASH on Windows Do?
-
@Dashrender said:
I can't agree that it's crippled.
If you say you are giving me a new shell for windows and then tell me it can't work as a shell ... isn't that crippled? BASH isn't able to do anything it is meant to do. That's very, very crippled.
-
I'm really interested to see where this leads in regards to their aspirations in the area of containerized workloads running on Windows. Are they going to build some kind of emulated kernel space into the WSL and add support for other distributions to facilitate Docker Hosts and container based developemnt?
-
@Dashrender said:
To make BASH work, MS would have to create all of their own versions of those admin utilities that would understand the MS way of doing things.. for example - creating users. I definitely don't expect the BASH (Ubuntu) create user command to understand how to build a Windows user - that's why PowerShell was made, MS build the CLI tools there that know how to poke and prod Windows when it comes to making users.
There is no BASH command for that. I'm unclear what you are thinking here. Are you thinking that Linux commands are INSIDE of BASH? BASH is just the shell, NOT the utilities. All of those utilities already exist. What would they have to create that does not already exist?
-
@scottalanmiller said:
@Dashrender said:
Other than trying to install mySQL or something, I'm not sure what more you would want to do with it?
I want it to work... to be a shell for the OS. Why I would want to install MySQL into a fake environment I'm unclear. But using BASH as a replacement for powerShell is epic. But it appears that the product is crippled to the point of useless.
Unlike Macs, Windows is it's own system - Macs are based on FreeBSD, so those commands were already build to work with BSD, so nothing needed to be changed.
If MS dumped their underlying system/APIs, etc and started using the Linux kernel or FreeBSD, then sure - those CLI commands you're used to should and probably would work.
-
@Dashrender said:
Unlike Macs, Windows is it's own system - Macs are based on FreeBSD, so those commands were already build to work with BSD, so nothing needed to be changed.
WHAT COMMANDS???? BASH's commands are things like "for" and "do". I have no idea what commands you are talking about.
-
@Dashrender said:
If MS dumped their underlying system/APIs, etc and started using the Linux kernel or FreeBSD, then sure - those CLI commands you're used to should and probably would work.
No, it would be exactly the same. The use of UNIX here is irrelevant.
-
@scottalanmiller said:
@Dashrender said:
I can't agree that it's crippled.
If you say you are giving me a new shell for windows and then tell me it can't work as a shell ... isn't that crippled? BASH isn't able to do anything it is meant to do. That's very, very crippled.
I didn't hear anyone say they are giving a new shell for windows - so that's the first fallacy.
-
@Dashrender said:
I didn't hear anyone say they are giving a new shell for windows - so that's the first fallacy.
That's what I heard everywhere. BASH for Windows. BASH on Windows. That's what those terms imply. BASH is a shell, BASH for Windows would be a shell FOR Windows. But this is not. This is a shell for a fake environment.
-
Ars Technica used that wording, for example.
-
@scottalanmiller said:
@Dashrender said:
To make BASH work, MS would have to create all of their own versions of those admin utilities that would understand the MS way of doing things.. for example - creating users. I definitely don't expect the BASH (Ubuntu) create user command to understand how to build a Windows user - that's why PowerShell was made, MS build the CLI tools there that know how to poke and prod Windows when it comes to making users.
There is no BASH command for that. I'm unclear what you are thinking here. Are you thinking that Linux commands are INSIDE of BASH? BASH is just the shell, NOT the utilities. All of those utilities already exist. What would they have to create that does not already exist?
Oh, so you what? want to run PowerShell commands in Bash? why is this useful?
See this is where I am totally lost.. what is the different between BASH and KRoN and PowerShell? what makes them different?
-
As did TechCrunch.
-
@Dashrender said:
Oh, so you what? want to run PowerShell commands in Bash? why is this useful?
Of course, its useful because people know BASH and it is easy to use.
Microsoft has two shells already and all of the utilities made. We want to run them with BASH. That's what BASH on Windows means.
-
@Dashrender said:
See this is where I am totally lost.. what is the different between BASH and KRoN and PowerShell? what makes them different?
Syntax, features and behaviour.
-
@scottalanmiller said:
@Dashrender said:
Unlike Macs, Windows is it's own system - Macs are based on FreeBSD, so those commands were already build to work with BSD, so nothing needed to be changed.
WHAT COMMANDS???? BASH's commands are things like "for" and "do". I have no idea what commands you are talking about.
Commands like LS and RD and MD, etc - but I see what you are saying. .those are just executables.. they aren't part of the shell - so again.. what the heck is a shell? what makes one better than another?
-
@Dashrender said:
@scottalanmiller said:
@Dashrender said:
Unlike Macs, Windows is it's own system - Macs are based on FreeBSD, so those commands were already build to work with BSD, so nothing needed to be changed.
WHAT COMMANDS???? BASH's commands are things like "for" and "do". I have no idea what commands you are talking about.
Commands like LS and RD and MD, etc - but I see what you are saying. .those are just executables.. they aren't part of the shell - so again.. what the heck is a shell? what makes one better than another?
Right. The shell is the REPL from the programming language that lets you run commands in real time.
What's odd is that your reaction is this way... but most people see the shell as so important that they mistake one OS for another based on the shell alone!
-
@scottalanmiller said:
@Dashrender said:
See this is where I am totally lost.. what is the different between BASH and KRoN and PowerShell? what makes them different?
Syntax, features and behaviour.
Why would syntax be different?
I don't know what you mean by features?
and behavior - ok that one I understand - in Windows for example you get the are you sure you want to delete but in BASH if there is no error you get no feedback. -
@Dashrender said:
Why would syntax be different?
Because different languages have different syntax. Ever used two different programming languages? That's all shells are.
-
@Dashrender said:
I don't know what you mean by features?
History, command completion, short cuts, loops... all the things that different languages have and their REPLs.
-
@Dashrender said:
and behavior - ok that one I understand - in Windows for example you get the are you sure you want to delete but in BASH if there is no error you get no feedback.
While that is true, that's only sometimes the shell. If something is asking, likely that is the app itself.
-
@scottalanmiller said:
@Dashrender said:
I don't know what you mean by features?
History, command completion, short cuts, loops... all the things that different languages have and their REPLs.
http://mugurel.sumanariu.ro/wp-content/uploads/2008/06/bash.png
ctrl+r is the greatest thing ever.