all repos — nixfiles @ 0c5475091ffe03d0b5dd1623d6a5873ada5cd652

System and user configuration, managed by nix and home-manager

fish: add tmp function to cd to an ephemeral dir
Alan Pearce alan@alanpearce.eu
Wed, 12 Feb 2025 01:19:33 +0100
commit

0c5475091ffe03d0b5dd1623d6a5873ada5cd652

parent

f4e50d0d86c0e1b73894b79b9a87ba9b89c81fbe

1 files changed, 30 insertions(+), 0 deletions(-)

jump to
A user/settings/fish/functions/tmp.fish
@@ -0,0 +1,30 @@+# source: https://github.com/ansemjo/dotfiles/blob/debfb84d2574985daeac0d85a66002081b59a569/fish/functions/tmpdir.fish
+function tmp --description "Create and switch into an emphemeral directory"
+
+    # create a tmpdir and cd into it
+    set -l tmpdir (mktemp --tmpdir -d tmpdir-XXXXXX)
+    cd $tmpdir; and echo >&2 \
+        (set_color yellow)"tmpdir:" $tmpdir "will be removed on exit" \
+        (set_color normal)
+
+    # spawn a new shell, store the exit status and return to previous dir
+    fish $argv
+    set -l ret $status
+    cd $dirprev[-1]
+
+    # after exit, check if there are mounts inside tmpdir
+    if test -e /etc/mtab && awk '{ print $2 }' /etc/mtab | grep $tmpdir
+        echo >&2 \
+            (set_color red)"refusing to purge $tmpdir due to mounts!" \
+            (set_color normal)
+    else
+        # if clear, purge directory
+        echo >&2 \
+            (set_color red)"purge $tmpdir ..." \
+            (set_color normal)
+        rm -rf $tmpdir
+    end
+
+    # return subshell exit status
+    return $ret
+end