Parcourir la source

修复history_commands没记录到txt中 (#39)

* 修改issues#38 bug: history_command没记录到txt中

* cargo fmt规范格式
Weihao Zhu il y a 1 an
Parent
commit
a066b0ad3e
1 fichiers modifiés avec 3 ajouts et 2 suppressions
  1. 3 2
      src/shell/mod.rs

+ 3 - 2
src/shell/mod.rs

@@ -101,12 +101,12 @@ impl Shell {
             {
                 self.history_commands
                     .push(Rc::new(RefCell::new(command_bytes.clone())));
+                self.write_commands();
             };
             if !command_bytes.iter().all(|&byte| byte == b' ') {
                 self.exec_commands_in_line(&command_bytes);
             }
         }
-        self.write_commands();
     }
 
     fn exec_commands_in_line(&mut self, command_bytes: &Vec<u8>) {
@@ -136,7 +136,8 @@ impl Shell {
 
     fn write_commands(&self) {
         let mut file = OpenOptions::new()
-            .append(false)
+            .write(true)
+            .truncate(true)
             .open("history_commands.txt")
             .unwrap();
         for command_line in &self.history_commands {