From 528877a71c1a77c77d05c4708d5beda237838642 Mon Sep 17 00:00:00 2001 From: Pyro57000 <147988717+Pyro57000@users.noreply.github.com> Date: Thu, 23 May 2024 17:37:50 +0000 Subject: [PATCH] Create mkccache.fish --- fish_functions/mkccache.fish | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 fish_functions/mkccache.fish diff --git a/fish_functions/mkccache.fish b/fish_functions/mkccache.fish new file mode 100644 index 0000000..3df26d4 --- /dev/null +++ b/fish_functions/mkccache.fish @@ -0,0 +1,5 @@ +function mkccache +echo $argv[1] | string replace -a " " "" | string replace \n "" | base64 -d > ./ticket.kirbi +ticketConverter.py ./ticket.kirbi ./ticket.ccache +export KRB5CCNAME=$(pwd)/ticket.ccache +end