1
vote
1answer
27 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
72 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 ...
0
votes
1answer
24 views

How can I change the startup directory of fish fish shell?

I have bound fish shell to a keyboard shortcut Ctrl + ~ and on startup it opens the directory /usr/lib/lightdm/lightdm. This is quite annoying, because I have no business with lightdm, and I usually ...
1
vote
0answers
309 views

How to remove fishfish shell? [closed]

I've installed through the .pkg-file on http://ridiculousfish.com/shell/beta.html How do I remove ALL the files that fish installed?
0
votes
1answer
74 views

Listing directory in MATLAB does not work with fish

After I setup fish as the main shell chsh -s /usr/local/bin/fish, I've tried to use ls command in MATLAB, but I got the following error: ??? Error using ==> ls at 36 /usr/local/bin/fish: ...
6
votes
2answers
354 views

Zsh color partial tab completions

Is it possible to color the completed part of the partial completion results in Zsh? Fish does this by default (in Gentoo at least) as shown in the image below: Full size image: ...
0
votes
0answers
83 views

Fish (shell) 'exec' can't launch anything interactive?

I'm fairly new to the fish shell (and shell scripting in general), but I thought I'd try to do something pretty basic: create a function to conditionally launch ruby or irb. Below is the complete ...
1
vote
3answers
3k views

Add a relative path to $PATH on fish startup

I want to add ./bin directory (which is relative to current shell directory) to $PATH on fish startup. Note that fish is a shell. echo $PATH set PATH ./bin $PATH echo $PATH If I place these lines ...
1
vote
2answers
1k views

Creating Gedit syntax files

I have started a new thread rather then reviving this one: Creating your own syntax highlighting in GEdit? Hope that was the right thing to do. I have created a syntax file for fish shell and placed ...
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. ...