1
What is the difference between BASH and DOS in Linux?
What is the difference between BASH and DOS in Linux?
|), redirection (>, <)| Feature | BASH (Linux) | DOS (Windows CMD) |
|---|---|---|
| Platform | Linux/Unix | Windows |
| Power | Advanced | Basic |
| Scripting | Strong (shell scripts) | Limited (.bat files) |
| Case Sensitivity | Yes | No |
| Automation | Highly flexible | Limited |
BASH:
ls | grep ".txt"
DOS:
dir *.txt
Read More: How to find where a file is stored in Linux?