Search Results
| Search type | Search syntax |
|---|---|
| Tags | [tag] |
| Exact | "words here" |
| Author |
user:1234 user:me (yours) |
| Score |
score:3 (3+) score:0 (none) |
| Answers |
answers:3 (3+) answers:0 (none) isaccepted:yes hasaccepted:no inquestion:1234 |
| Views | views:250 |
| Code | code:"if (foo != bar)" |
| Sections |
title:apples body:"apples oranges" |
| URL | url:"*.example.com" |
| Saves | in:saves |
| Status |
closed:yes duplicate:no migrated:no wiki:no |
| Types |
is:question is:answer |
| Exclude |
-[tag] -apples |
| For more details on advanced search visit our help page | |
Results tagged with bash
Search options not deleted
user 35197
Bash is a free shell for Unix-like operating systems from the GNU Project.
7
votes
How do I make Bash my default shell on Ubuntu?
make any shell your default, first verify it is installed and recognized on your computer by looking at the contents of /etc/shells:
$ cat /etc/shells
# /etc/shells: valid login shells
/bin/sh
/bin/bash … /usr/bin/bash
/bin/rbash
/usr/bin/rbash
/bin/dash
/usr/bin/dash
/usr/bin/fish
Then use chsh to change your shell:
$ sudo chsh -s /usr/bin/bash $(whoami) # or sudo chsh -s /bin/bash $(whoami)
References …
2
votes
2
answers
78
views
Looking for a tool that merges output from different shells
I have a bash script that spins off three processes like this:
CD FOO_DIR && ./run-foo
CD BAR_DIR && ./run-bar
CD BAZ_DIR && . …
1
vote
1
answer
2k
views
Can I use ProxyCommand to run arbitrary commands on a target server via a jumpbox/middle ser...
/usr/bin/env bash
ssh jumper@jumpbox @
Then I can simply run
jumpbox.sh ssh admin@server-1 dh -H
To achieve the same goal. …