From dee3734760a4625d956fe357ffa13f50511f0180 Mon Sep 17 00:00:00 2001 From: mirkobrombin Date: Tue, 19 Dec 2023 20:13:02 +0100 Subject: [PATCH] feat: add os-shell to expand the user SHELL --- includes.container/usr/bin/os-shell | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 includes.container/usr/bin/os-shell diff --git a/includes.container/usr/bin/os-shell b/includes.container/usr/bin/os-shell new file mode 100644 index 0000000..ffdf7e8 --- /dev/null +++ b/includes.container/usr/bin/os-shell @@ -0,0 +1,4 @@ +#!/bin/sh + +target_shell=$(echo $SHELL) +exec "$target_shell" "$@" \ No newline at end of file