#!/bin/bash
 
function neu
{
cd /etc/samba/profiles/schueler
mv ntuser.man ntuser.dat
echo "Profil kann nun geändert werden."
}
 
 
function fertig
{
cd /etc/samba/profiles/schueler
mv ntuser.dat ntuser.man
echo "Profil ist nun gesperrt."
}
 
$1

Zum Ändern

ssh root@s4e "profil neu"

Zum Sperren

ssh root@s4e "profil fertig"