cfg/a-00-00/zsh/.zlogout
inference 6ba8f95717
feat(loc)!: rename system "aa000-0" to "aa-00-00"
I have switched to a clearer naming convention for my systems. This
commit moves the directory and file locations to reflect that change.
2025-06-27 18:11:24 +00:00

17 lines
311 B
Bash

# Inferencium
# ZSH - Logout
# Copyright 2023 Jake Winters
# SPDX-License-Identifier: BSD-3-Clause
# Version: 1.0.0.2
# Kill ssh-agent on logout to purge cached SSH key passphrase from memory
if [ -n "$SSH_AUTH_SOCK" ] ; then
eval $(ssh-agent -k)
fi
# Clear shell to prevent information disclosure
clear