Questions et réponses pour le ksh :

Le KornShell est un langage shell open source compatible POSIX d'AT & T basé sur le shell Bourne original. Assurez-vous de savoir si votre ksh est ksh93 ou un clone.

7
votes
utiliser SFTP dans un script sans interaction utilisateur (non interactive). Par exemple, pour vous connecter à un serveur FTP anonyme et ne pas avoir à manuellement. ...

6
votes
En général, j'utiliserai EXPR à l'intérieur des scripts Shell pour faire des opérations arithmétiques. Y a-t-il une manière où no ...

6
votes
Comment un script peut-il déterminer son chemin quand il est provenant de ksh? IE $ cat k.ksh #!/bin/ksh . j.ksh $ cat j.ksh #!/bin/ksh a=$(history | tail -1) echo $a $ ./k.ksh 270 ./k ...