Retourner au contenu associé (entrée de forum : Débutant en shell script needs help !!)
Posté par Frederic Brugmans le 06 juin 2005 à 23:32. En réponse au message Débutant en shell script needs help !!. Évalué à 1.
AltStyle によって変換されたページ (->オリジナル) / アドレス: モード: デフォルト 音声ブラウザ ルビ付き 配色反転 文字拡大 モバイル
# propositions :
Posté par Frederic Brugmans . En réponse au message Débutant en shell script needs help !!. Évalué à 1.
#!/bin/sh
if [ -f /tmp/.X*-lock ]
then
echo "VNC Temp files detected"
for $i in /tmp/.X*-lock
do
( /bin/rm $i && echo "VNC temp files deleted" ) || echo "Error: can't delete VNC temp files"
fi
else echo "VNC ready to be launched"
exit
fi
( su --command='vncserver :1 -depth 16 -geometry 1024x768' timouton && echo "Xtight server starts" ) || echo "ERREUR: Impossible de demarrer Xtight Server"
#####################