You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
289 B
Fish
11 lines
289 B
Fish
6 years ago
|
function __z_clean -d "Clean up .z file to remove paths no longer valid"
|
||
|
set -l tmpfile (mktemp $Z_DATA.XXXXXX)
|
||
|
|
||
|
if test -f $tmpfile
|
||
|
command awk -F "|" 'system("test -d \"" $1 "\"") == 0 { print $0 }' $Z_DATA > $tmpfile
|
||
|
command mv -f $tmpfile $Z_DATA
|
||
|
end
|
||
|
|
||
|
__z_complete
|
||
|
end
|