Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Change directory in fish function and return to original directory after abort

Tags:

shell

fish

I am switching from bash to fish, but am having trouble porting over a convenience function I use often. The point of this function is to run make from the root directory of my source tree regardless of which directory my shell is currently in.

In bash, this was simply:

function omake {(
  cd $SOURCE_ROOT;
  make $@;
)}

Since fish doesn't have subshells, the best I've been able to do is:

function omake
    pushd
    cd $SOURCE_ROOT
    make $argv
    popd
end

This works, but with the caveat that after interrupting the fish version with ^C, the shell is still in $SOURCE_ROOT, but interrupting the bash version puts me back in the original directory.

Is there a way to write a script that works identically to the bash one in fish?

like image 204
Tiki Avatar asked Mar 20 '14 17:03

Tiki


2 Answers

This is as close as I can get to a subshell:

function omake
    echo "cd $SOURCE_ROOT; and make \$argv" | fish /dev/stdin $argv
end

Process substitution does not seem to be interruptable: Ctrl-C does not stop this sleep cmd

echo (cd /tmp; and sleep 15)

However, fish has a very nice way to find the pid of a backgrounded process:

function omake
    pushd dir1
    make $argv &
    popd
end

Then, to stop the make, instead of Ctrl-C, do kill %make

like image 126
glenn jackman Avatar answered Oct 02 '22 02:10

glenn jackman


if you're using GNU coreutils, you can use env to do this (as user2394284 suggested would be nice).

env -C foo pwd

this will run pwd in a subdirectory called foo nicely. this generally interacts nicely with fish, for example it can be backgrounded nicely

the docs say:

Change the working directory to dir before invoking command. This differs from the shell built-in cd in that it starts command as a subprocess rather than altering the shell’s own working directory; this allows it to be chained with other commands that run commands in a different context.

like image 40
Sam Mason Avatar answered Oct 02 '22 01:10

Sam Mason