Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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 inside ~/.config/fish/config.fish the shell will echo the same collection of paths. Absolute paths are added properly.

If I open the shell and type the same set PATH ./bin $PATH inside some directory containing bin it is added successfully. However when there is no bin inside current directory it shows me an error.

set: Could not add component ./bin to PATH.
set: Value too large to be stored in data type

I'm running fish 1.23.1 on OS X Lion.

share|improve this question
please indicate the underlying OS (Linux or Windows or ??), and the shell system (csh, ksh, bash, powershell, ???) Good luck. – shellter Aug 15 '11 at 14:36
fish is a shell; here's the web site. – Keith Thompson Aug 15 '11 at 15:26
Sorry for being unclear about what shell I am using. – Semyon Perepelitsa Aug 15 '11 at 16:13

3 Answers

I'd never heard of fish before this. I just installed it so I could try it out (and deleted a few paragraphs I had written here before realizing that fish is a shell).

It looks like set PATH dir-name $PATH is the right syntax to prepend a directory to $PATH.

But adding a relative directory name to $PATH is almost certainly a bad idea, and your shell is doing you a favor by warning you when the directory doesn't exist. (fish is designed to be user-friendly.)

Use an absolute path instead:

set PATH $PWD/bin $PATH

and first check whether $PWD/bin exists, printing an error message if it doesn't.

As for the "set: Value too large to be stored in data type" message, could you be adding the directory to your $PATH multiple times? There should be some way to check whether a directory is already in $PATH before adding it.

share|improve this answer
But I really want ./bin be in my PATH, so that if I cd in some directory I can call any executables in its ./bin subdirectory without prepending bin/. Zsh allows me to do this. $PWD/bin will be set once and won't be relative to current directory. – Semyon Perepelitsa Aug 15 '11 at 16:30
5  
I'd say that's a bad idea for the same reason having . in your $PATH is a bad idea. Suppose you cd into /tmp/bad, and somebody has created a /tmp/bad/bin/ls that runs rm -rf $HOME. If I know there's a command in ./bin that I want to execute, I can type bin/whatever; if I don't, I probably don't want to execute it. But if you insist, it looks like fish only checks whether the directory exists when you run the set command. Just make sure you're in a directory that has a ./bin subdirectory when you set your $PATH; it will stay there when you cd to other directories. – Keith Thompson Aug 15 '11 at 16:57
Good point about security, I will think about that. Thanks. – Semyon Perepelitsa Aug 17 '11 at 6:23

I think the answer is that using set -U is a red herring. Instead, add the following to ~/.config/fish/config.fish:

if status --is-interactive
    set PATH $PATH ~/.local/bin;
end
share|improve this answer
sorry, this probably doesn't answer the original question, but I'll leave it for anyone else looking for a hint! – dhardy Apr 21 '12 at 16:54
up vote 0 down vote accepted

It seems like fish won't add a non-existing directory path to PATH. That applies to relative paths too. But if you create bin directory in your home directory set PATH ./bin $PATH will work properly on each startup since it is executed from home. This is kind of a hack though.

share|improve this answer
1  
pushd ~ ; set PATH ./bin $PATH ; popd (But again, I don't think this is a good idea.) – Keith Thompson Aug 15 '11 at 17:57

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.