From b086f34fa283dbe6d39e6005b35fa17888396f2b Mon Sep 17 00:00:00 2001 From: Dan Davison Date: Sat, 17 Sep 2022 08:02:17 -0400 Subject: [PATCH] Reinstate -a short form of save --append (#6575) Present before engine-q merge (e.g. 265ee1281d810a569c7daddd02031f5c6991699e) but not included when --append was re-introduced at https://github.com/nushell/nushell/pull/4744. --- crates/nu-command/src/filesystem/save.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/nu-command/src/filesystem/save.rs b/crates/nu-command/src/filesystem/save.rs index 0587f799c..8c6643432 100644 --- a/crates/nu-command/src/filesystem/save.rs +++ b/crates/nu-command/src/filesystem/save.rs @@ -36,7 +36,7 @@ impl Command for Save { Signature::build("save") .required("filename", SyntaxShape::Filepath, "the filename to use") .switch("raw", "save file as raw binary", Some('r')) - .switch("append", "append input to the end of the file", None) + .switch("append", "append input to the end of the file", Some('a')) .category(Category::FileSystem) }