0
votes
1answer
28 views

Fish programming: Why are `bind` commands in config.fish not executed?

At end of /usr/share/fish/config.fish, I have the following commands: bind \e\[1\;5C forward-word bind \e\[1\;5D backward-word echo foo Afterwards I run fish, it prints "foo". I then run bind to ...
0
votes
1answer
59 views

unix: how to tell if a string matches a regex

Trying out fish shell, so I'm translating my bash functions. The problem is that in one case, I'm using bash regexes to check if a string matches a regex. I can't figure out how to translate this into ...
1
vote
1answer
28 views

Shell programming: How to use find in fish?

See the following command executed in fish and then bash: tmp ) touch file1 file2 file3 file4 tmp ) find . -exec echo {} \; tmp ) bash ^_^ ~/tmp > find . -exec echo {} \; . ./file3 ./file2 ...
0
votes
0answers
83 views

Unable to change shell from bash to fish

I just downloaded and installed fish and I want to use that as my default shell, but for some reason, I am not able to change the default shell from bash to fish. I have tried the following: sudo ...
6
votes
4answers
2k views

How to define an alias in fish shell?

I would like to define some aliases in fish. Apparently it should be possible to define them in ~/.config/fish/functions but they don't get auto loaded when I restart the shell. Any ideas? p.s. ...