Advertisement
fenrock

bat vs sh in MingW64 shell

Sep 20th, 2021
945
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.33 KB | None | 0 0
  1. ######################################
  2. $ cat foo.bat
  3. echo "i work"
  4.  
  5. ######################################
  6. $ cat foo.sh
  7. echo "i work"
  8.  
  9. ######################################
  10. $ ./foo.bat
  11.  
  12. C:\msys64\home\markj\dev\msys-chicken\chicken-5.3.0rc3>echo "i work"
  13. "i work"
  14.  
  15. ######################################
  16. $ ./foo.sh
  17. i work
  18.  
  19.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement