エントリーの編集
エントリーの編集は全ユーザーに共通の機能です。
必ずガイドラインを一読の上ご利用ください。
記事へのコメント0件
- 注目コメント
- 新着コメント
このエントリーにコメントしてみましょう。
注目コメント算出アルゴリズムの一部にLINEヤフー株式会社の「建設的コメント順位付けモデルAPI」を使用しています
- バナー広告なし
- ミュート機能あり
- ダークモード搭載
関連記事
Rustで作った自作Shellの話
pub struct Command { command: String, sub_command: String, option: Vec<String>, path: String, ind... pub struct Command { command: String, sub_command: String, option: Vec<String>, path: String, index: usize, pipe: Option<Box<CommandParse>>, redirect: Option<Redirect>, } fn judge_loop(&mut self, mut line_split: &mut Vec<&str>) { self.index += 1; let line_index = line_split.len(); //配列の先頭は実行するコマンド self.command = line_split[0].to_string(); loop { if line_index <= self.index { break; } self.judge(&m