bass icon indicating copy to clipboard operation
bass copied to clipboard

Make Bash utilities usable in Fish shell

Results 13 bass issues
Sort by recently updated
recently updated
newest added

Shift the first positional parameter out into a variable before running the eval command, so that it is not passed onto sourced scripts. Fixes #89

Hi, First of all, this is probably not a bug but more of a support request. Sorry if this is the wrong forum! Quotes from my input arguments disappear when...

When using bass to run the profile.d directory after login, I get the titular error from 2 files: * /etc/profile.d/flatpak-bindir.sh * /etc/profile.d/perlbin.sh I am running fish v3.1.1 on Garuda. flatpak-bindir.sh...

```console $ echo -e 'declare -x FOO="B\nA\nR\n"' > test $ bass source ./test $ echo "$FOO" B\nA\nR\n $ set -x FOO 'B A R ' $ echo "$FOO" B A...

It seems that bass is incompatible with virtualenv. The problem is that virtualenv changes the python binary in such a way that `python3 -sS` can no longer find the installed...

a.sh: ``` echo $1 ``` --- `bash -c 'source a.sh'` > ` ` `bass source a.sh` > `source a.sh` This confuses some scripts which might accept an optional argument (in...

wontfix

I'm hesitant to even open this, because I really don't understand what or how is happening, but it's really repeatable and badly affects my terminal start time: With a `time...

For aliases with `$*` in them, bash will accept the alias. `fish` complains because these aren't valid in `fish`. `bass` should convert these to an acceptable form for `fish`. Test...

For example, with this large (2126 LoC at time of writing) `$file`: https://github.com/ryanoasis/nerd-fonts/blob/master/bin/scripts/lib/i_material.sh ```sh bass -- set -o allexport \; "$file" ``` hangs longer than I care to wait -...

I tried to follow the comments on the __bass.py but unfortunately it did not work. Maybe I got lost with the 'nvm' example... Context: I have only a bash script...