add shell command
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Moritz 2025-02-11 15:07:52 +01:00
parent 35d48cc4c4
commit 43700b2562

View File

@ -35,6 +35,15 @@ customize() {
done
}
shell(){
if [ -z "$1" ]
then
echo "Usage: ... shell <python code>"
exit 1
fi
ak shell -c "$1" 2>&1 | quieten
}
import_user() {
if [ -z "$1" ]
then