Xcode で記述された Mac ネイティブ アプリがあります。リモートサーバーでそのアプリケーションを使用して SSH コマンドを実行し、結果をユーザーに返したいと考えています。
そのためのライブラリ/フレームワークはありますか? それは可能ですか?
Xcode で記述された Mac ネイティブ アプリがあります。リモートサーバーでそのアプリケーションを使用して SSH コマンドを実行し、結果をユーザーに返したいと考えています。
そのためのライブラリ/フレームワークはありますか? それは可能ですか?
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.