about summary refs log blame commit diff stats
path: root/home-manager/packages/scripts/wrappers/ll
blob: cb1fc0ea018147749e041914f303b021b0619251 (plain) (tree)
1
2
3
4
5
6
7
8
9
                   
 
                             
                                                   
 
                          
 
                                                
 
                                       
                    
 
            
#!/usr/bin/env dash

# shellcheck source=/dev/null
SHELL_LIBRARY_VERSION="1.1.4" . %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