Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
1answer
255 views

Compiling fish shell under Cygwin?

Has anyone been able to correctly compile fish under Cygwin? I found this post about modifying configure.ac but I'm getting all sorts of errors. The usual configure, make, make install isn't working ...
2
votes
6answers
1k views

How can I set fish shell as my default shell on Mac?

I do not like to write fish again and again when I start terminal. I want fish on by default.
1
vote
1answer
116 views

String manipulation in fish shell

i wish to write a fish shell script to automatically initialize JAVA_HOME to current configured java-alternative. In bash it would look like this (sorry for the ugly double dirname) ...
1
vote
2answers
127 views

Directory of running script in Fish shell

I'm trying to get SBT running using the Fish shell. Below is the equivalent Bash script of what I'm trying to achieve: java -Xmx512M -jar `dirname $0`/sbt-launch.jar "$@" I see in the Fish ...
1
vote
1answer
60 views

How to define constants in fish?

In sh: readonly constant=value How to do it in fish?
1
vote
1answer
224 views

Writing A Fish Shell Script With an Optional Argument

I have a fish shell script whose default behavior is to send an email when complete. I'd like to modify it to respond to a nomail argument from the command line. So, for example, running the script ...
1
vote
1answer
63 views

Retrieve the path of the current source file with fish

In a fish shell script, is it possible to obtain the path where the shell script lives? In bash, you can use the BASH_SOURCE variable to do this.
1
vote
2answers
391 views

Fish Interactive Shell full path

Is there a way in the Fish Interactive shell for the full path to be displayed. Currently when I navigate to a directory I get the following shell. millermj@Dodore ~/o/workspace but I would rather ...
0
votes
0answers
65 views

Splitting a command over multiple lines in fish-shell

I'm trying to split my list of additional paths on to multiple lines in my fish config: # Path additions for i in \ ~/Library/Haskell/ghc-7.0.2/lib/gtk2hs-buildtools-0.12.0/bin \ ...
0
votes
2answers
133 views

cannot understand command substitute in fish shell

In sh: ~$ `echo ls` bin/ Desktop/ But in fish: fish: Illegal command name “(echo ls)” ~% (echo ls) (Note that the error message appears above the command line.) ~% echo (echo ls) ls ~% eval ...