2

Xcode で記述された Mac ネイティブ アプリがあります。リモートサーバーでそのアプリケーションを使用して SSH コマンドを実行し、結果をユーザーに返したいと考えています。

そのためのライブラリ/フレームワークはありますか? それは可能ですか?

4

1 に答える 1

6

NSTaskクラスを使用してsshコマンドを実行します。

次のコードは、この質問への回答から改作されました。

NSTask *task;
task = [[NSTask alloc] init];
[task setLaunchPath: @"/usr/bin/ssh"]; // Tell the task to execute the ssh command
[task setArguments: [NSArray arrayWithObjects: @"<user>:<hostname>", @"<command>"]]; // Set the arguments for ssh to contain only your command. If other configuration is necessary, see the ssh(1) man page.

NSPipe *pipe;
pipe = [NSPipe pipe];
[task setStandardOutput: pipe];
NSFileHandle *file;
file = [pipe fileHandleForReading]; // This file handle is a reference to the output of the ssh command

[task launch];

NSData *data;
data = [file readDataToEndOfFile];

NSString *string;
string = [[NSString alloc] initWithData: data encoding: NSUTF8StringEncoding]; // This string now contains the entire output of the ssh command.
于 2012-08-02T23:29:38.440 に答える