This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <iostream> | |
| using namespace std; | |
| int main() | |
| { | |
| cout << "Hello World!\n"; | |
| return 0; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <iostream> | |
| int main() | |
| { | |
| std::cout << "Hello World!\n"; | |
| return 0; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # .sshディレクトリがなければ作成。既にあるなら飛ばす。 | |
| mkdir ~/.ssh | |
| cd ~/ | |
| chmod 700 .ssh | |
| # コピーしてパーミッションを設定 | |
| # SSHKEYはダウンロードしたファイルへ変更すること | |
| cd ~/.ssh | |
| mv SSHKEY ./ | |
| chmod 600 SSHKEY |