The Bourne-Again SHell (Bash) is a successor to the Bourne shell (sh). Bash is the default shell in many Linux distributions.

learn more… | top users | synonyms (3)

0
votes
1answer
54 views
+50

How can I determine if HTML5 player is running in browser?

I would like to find a command-line or a script (in bash, perl or python) that will show me if HTML5 player is running or not in a browser (firefox or chromium).
3
votes
1answer
86 views
+50

How do I pass an absolute path to the adb command via git bash for windows?

I'm trying to pass a unix style path to the Android adb command using a git bash (msysgit) but the shell is interpreting my path incorrectly. This is what I've tried so far: $ adb push myfile ...
2
votes
1answer
83 views
+50

How do i make a GIT credential helper?

The original question has been edited for clarity: I have a main project that does a git clone https://my.repo.project.git. The project has 2 targets (main target and password helper target). The ...