AutoYADM commit: 2025-02-23 20:00:07

This commit is contained in:
Daniel Fichtinger 2025-02-23 20:00:07 -05:00
parent d1db986e15
commit 606bced80c

2
.zshrc
View file

@ -146,7 +146,7 @@ function viewport_osc(){
function mksh(){
local path="$1.sh"
if [[ ! -f "$path" ]]; then
echo "#!/bin/env bash\n" >> "$path"
echo '#!/bin/env bash\n\necho "Hello, World!"' >> "$path"
/usr/bin/chmod +x "$path"
echo "$path created."
else