AutoYADM commit: 2025-02-24 14:50:11

This commit is contained in:
Daniel Fichtinger 2025-02-24 14:50:11 -05:00
parent a558358172
commit 0f32702413

6
.zshrc
View file

@ -152,7 +152,11 @@ function mksh() {
/usr/bin/chmod +x "$filepath" /usr/bin/chmod +x "$filepath"
echo "$filepath created." echo "$filepath created."
else else
echo "$filepath already exists or is invalid." if [[ "$filepath" == ".sh" ]]; then
echo "You must supply an argument!"
else
echo "$filepath already exists"
fi
fi fi
} }