about summary refs log tree commit diff stats
path: root/sys/nixpkgs/pkgs/scripts/source/wrappers/ll.sh
blob: 2a65d0a632f432311bcfae9e561a71f3118bc5af (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/usr/bin/env dash

# shellcheck source=/dev/null
SHELL_LIBRARY_VERSION="2.0.13" . %SHELL_LIBRARY_PATH

last_directory="$(mktemp)"

command lf -last-dir-path="$last_directory" "$@"

dir="$(cat "$last_directory")"
cd "$dir" || die "$dir does not exist!"
rm "$last_directory"

# vim: ft=sh