repo
stringlengths
6
65
file_url
stringlengths
81
311
file_path
stringlengths
6
227
content
stringlengths
0
32.8k
language
stringclasses
1 value
license
stringclasses
7 values
commit_sha
stringlengths
40
40
retrieved_at
stringdate
2026-01-04 15:31:58
2026-01-04 20:25:31
truncated
bool
2 classes
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu-command/src/formats/to/yaml.rs
crates/nu-command/src/formats/to/yaml.rs
use nu_engine::command_prelude::*; use nu_protocol::ast::PathMember; #[derive(Clone)] pub struct ToYaml; impl Command for ToYaml { fn name(&self) -> &str { "to yaml" } fn signature(&self) -> Signature { Signature::build("to yaml") .input_output_types(vec![(Type::Any, Type::Str...
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu-command/src/formats/to/csv.rs
crates/nu-command/src/formats/to/csv.rs
use std::sync::Arc; use crate::formats::to::delimited::to_delimited_data; use nu_engine::command_prelude::*; use nu_protocol::Config; use super::delimited::ToDelimitedDataArgs; #[derive(Clone)] pub struct ToCsv; impl Command for ToCsv { fn name(&self) -> &str { "to csv" } fn signature(&self) ->...
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu-command/src/formats/to/delimited.rs
crates/nu-command/src/formats/to/delimited.rs
use csv::WriterBuilder; use nu_cmd_base::formats::to::delimited::merge_descriptors; use nu_protocol::{ ByteStream, ByteStreamType, Config, PipelineData, ShellError, Signals, Span, Spanned, Value, shell_error::io::IoError, }; use std::{iter, sync::Arc}; fn make_csv_error(error: csv::Error, format_name: &str, he...
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu-command/src/formats/to/toml.rs
crates/nu-command/src/formats/to/toml.rs
use chrono::{DateTime, Datelike, FixedOffset, Timelike}; use nu_engine::command_prelude::*; use nu_protocol::{PipelineMetadata, ast::PathMember}; #[derive(Clone)] pub struct ToToml; impl Command for ToToml { fn name(&self) -> &str { "to toml" } fn signature(&self) -> Signature { Signature...
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu-command/src/filters/par_each.rs
crates/nu-command/src/filters/par_each.rs
use super::utils::chain_error_with_input; use nu_engine::{ClosureEvalOnce, command_prelude::*}; use nu_protocol::{Signals, engine::Closure}; use rayon::prelude::*; #[derive(Clone)] pub struct ParEach; impl Command for ParEach { fn name(&self) -> &str { "par-each" } fn description(&self) -> &str {...
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu-command/src/filters/tee.rs
crates/nu-command/src/filters/tee.rs
use nu_engine::{command_prelude::*, get_eval_block_with_early_return}; #[cfg(feature = "os")] use nu_protocol::process::ChildPipe; #[cfg(test)] use nu_protocol::shell_error; use nu_protocol::{ ByteStream, ByteStreamSource, OutDest, PipelineMetadata, Signals, byte_stream::copy_with_signals, engine::Closure, repo...
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu-command/src/filters/slice.rs
crates/nu-command/src/filters/slice.rs
use nu_engine::command_prelude::*; use nu_protocol::IntRange; use std::ops::Bound; #[derive(Clone)] pub struct Slice; impl Command for Slice { fn name(&self) -> &str { "slice" } fn signature(&self) -> Signature { Signature::build("slice") .input_output_types(vec![( ...
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu-command/src/filters/is_not_empty.rs
crates/nu-command/src/filters/is_not_empty.rs
use crate::filters::empty::empty; use nu_engine::command_prelude::*; #[derive(Clone)] pub struct IsNotEmpty; impl Command for IsNotEmpty { fn name(&self) -> &str { "is-not-empty" } fn signature(&self) -> Signature { Signature::build("is-not-empty") .input_output_types(vec![(Ty...
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu-command/src/filters/first.rs
crates/nu-command/src/filters/first.rs
use nu_engine::command_prelude::*; use nu_protocol::{Signals, shell_error::io::IoError}; use std::io::Read; #[derive(Clone)] pub struct First; impl Command for First { fn name(&self) -> &str { "first" } fn signature(&self) -> Signature { Signature::build("first") .input_output...
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu-command/src/filters/where_.rs
crates/nu-command/src/filters/where_.rs
use nu_engine::{ClosureEval, command_prelude::*}; use nu_protocol::engine::{Closure, CommandType}; #[derive(Clone)] pub struct Where; impl Command for Where { fn name(&self) -> &str { "where" } fn description(&self) -> &str { "Filter values of an input list based on a condition." } ...
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu-command/src/filters/move_.rs
crates/nu-command/src/filters/move_.rs
use std::ops::Not; use nu_engine::command_prelude::*; #[derive(Clone, Debug)] enum Location { Before(Spanned<String>), After(Spanned<String>), Last, First, } #[derive(Clone)] pub struct Move; impl Command for Move { fn name(&self) -> &str { "move" } fn description(&self) -> &str...
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu-command/src/filters/reverse.rs
crates/nu-command/src/filters/reverse.rs
use nu_engine::command_prelude::*; #[derive(Clone)] pub struct Reverse; impl Command for Reverse { fn name(&self) -> &str { "reverse" } fn signature(&self) -> nu_protocol::Signature { Signature::build("reverse") .input_output_types(vec![( Type::List(Box::new(Ty...
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu-command/src/filters/headers.rs
crates/nu-command/src/filters/headers.rs
use nu_engine::command_prelude::*; use nu_protocol::Config; #[derive(Clone)] pub struct Headers; impl Command for Headers { fn name(&self) -> &str { "headers" } fn signature(&self) -> Signature { Signature::build(self.name()) .input_output_types(vec![(Type::table(), Type::tabl...
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu-command/src/filters/select.rs
crates/nu-command/src/filters/select.rs
use nu_engine::command_prelude::*; use nu_protocol::{ DeprecationEntry, DeprecationType, PipelineIterator, ReportMode, ast::PathMember, casing::Casing, }; use std::collections::BTreeSet; #[derive(Clone)] pub struct Select; impl Command for Select { fn name(&self) -> &str { "select" } // F...
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu-command/src/filters/upsert.rs
crates/nu-command/src/filters/upsert.rs
use std::borrow::Cow; use nu_engine::{ClosureEval, ClosureEvalOnce, command_prelude::*}; use nu_protocol::ast::PathMember; #[derive(Clone)] pub struct Upsert; impl Command for Upsert { fn name(&self) -> &str { "upsert" } fn signature(&self) -> Signature { Signature::build("upsert") ...
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu-command/src/filters/items.rs
crates/nu-command/src/filters/items.rs
use super::utils::chain_error_with_input; use nu_engine::{ClosureEval, command_prelude::*}; use nu_protocol::engine::Closure; #[derive(Clone)] pub struct Items; impl Command for Items { fn name(&self) -> &str { "items" } fn signature(&self) -> Signature { Signature::build(self.name()) ...
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu-command/src/filters/insert.rs
crates/nu-command/src/filters/insert.rs
use std::borrow::Cow; use nu_engine::{ClosureEval, ClosureEvalOnce, command_prelude::*}; use nu_protocol::ast::PathMember; #[derive(Clone)] pub struct Insert; impl Command for Insert { fn name(&self) -> &str { "insert" } fn signature(&self) -> Signature { Signature::build("insert") ...
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu-command/src/filters/update.rs
crates/nu-command/src/filters/update.rs
use nu_engine::{ClosureEval, ClosureEvalOnce, command_prelude::*}; use nu_protocol::ast::PathMember; #[derive(Clone)] pub struct Update; impl Command for Update { fn name(&self) -> &str { "update" } fn signature(&self) -> Signature { Signature::build("update") .input_output_ty...
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu-command/src/filters/all.rs
crates/nu-command/src/filters/all.rs
use super::utils; use nu_engine::command_prelude::*; #[derive(Clone)] pub struct All; impl Command for All { fn name(&self) -> &str { "all" } fn signature(&self) -> Signature { Signature::build(self.name()) .input_output_types(vec![(Type::List(Box::new(Type::Any)), Type::Bool)...
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu-command/src/filters/compact.rs
crates/nu-command/src/filters/compact.rs
use nu_engine::command_prelude::*; #[derive(Clone)] pub struct Compact; impl Command for Compact { fn name(&self) -> &str { "compact" } fn signature(&self) -> Signature { Signature::build("compact") .input_output_types(vec![ (Type::record(), Type::record()), ...
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu-command/src/filters/prepend.rs
crates/nu-command/src/filters/prepend.rs
use nu_engine::command_prelude::*; #[derive(Clone)] pub struct Prepend; impl Command for Prepend { fn name(&self) -> &str { "prepend" } fn signature(&self) -> nu_protocol::Signature { Signature::build("prepend") .input_output_types(vec![(Type::Any, Type::List(Box::new(Type::An...
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu-command/src/filters/filter.rs
crates/nu-command/src/filters/filter.rs
use nu_engine::command_prelude::*; use nu_protocol::{DeprecationEntry, DeprecationType, ReportMode}; #[derive(Clone)] pub struct Filter; impl Command for Filter { fn name(&self) -> &str { "filter" } fn description(&self) -> &str { "Filter values based on a predicate closure." } f...
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu-command/src/filters/columns.rs
crates/nu-command/src/filters/columns.rs
use nu_engine::{column::get_columns, command_prelude::*}; #[derive(Clone)] pub struct Columns; impl Command for Columns { fn name(&self) -> &str { "columns" } fn signature(&self) -> Signature { Signature::build(self.name()) .input_output_types(vec![ (Type::tabl...
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu-command/src/filters/sort.rs
crates/nu-command/src/filters/sort.rs
use nu_engine::command_prelude::*; use nu_protocol::{ast::PathMember, casing::Casing}; use crate::Comparator; #[derive(Clone)] pub struct Sort; impl Command for Sort { fn name(&self) -> &str { "sort" } fn signature(&self) -> nu_protocol::Signature { Signature::build("sort") ....
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu-command/src/filters/rename.rs
crates/nu-command/src/filters/rename.rs
use indexmap::IndexMap; use nu_engine::{ClosureEval, command_prelude::*}; use nu_protocol::engine::Closure; #[derive(Clone)] pub struct Rename; impl Command for Rename { fn name(&self) -> &str { "rename" } fn signature(&self) -> Signature { Signature::build("rename") .input_ou...
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu-command/src/filters/empty.rs
crates/nu-command/src/filters/empty.rs
use nu_engine::command_prelude::*; use nu_protocol::shell_error::io::IoError; use std::io::Read; pub fn empty( engine_state: &EngineState, stack: &mut Stack, call: &Call, input: PipelineData, negate: bool, ) -> Result<PipelineData, ShellError> { let head = call.head; let columns: Vec<CellPa...
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu-command/src/filters/chunks.rs
crates/nu-command/src/filters/chunks.rs
use nu_engine::command_prelude::*; use nu_protocol::{ListStream, shell_error::io::IoError}; use std::{ io::{BufRead, Cursor, ErrorKind}, num::NonZeroUsize, }; #[derive(Clone)] pub struct Chunks; impl Command for Chunks { fn name(&self) -> &str { "chunks" } fn signature(&self) -> Signature...
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu-command/src/filters/values.rs
crates/nu-command/src/filters/values.rs
use indexmap::IndexMap; use nu_engine::command_prelude::*; #[derive(Clone)] pub struct Values; impl Command for Values { fn name(&self) -> &str { "values" } fn signature(&self) -> Signature { Signature::build(self.name()) .input_output_types(vec![ (Type::record...
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu-command/src/filters/flatten.rs
crates/nu-command/src/filters/flatten.rs
use indexmap::IndexMap; use nu_engine::command_prelude::*; use nu_protocol::ast::PathMember; #[derive(Clone)] pub struct Flatten; impl Command for Flatten { fn name(&self) -> &str { "flatten" } fn signature(&self) -> Signature { Signature::build("flatten") .input_output_types(...
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu-command/src/filters/interleave.rs
crates/nu-command/src/filters/interleave.rs
use nu_engine::{ClosureEvalOnce, command_prelude::*}; use nu_protocol::{engine::Closure, shell_error::io::IoError}; use std::{sync::mpsc, thread}; #[derive(Clone)] pub struct Interleave; impl Command for Interleave { fn name(&self) -> &str { "interleave" } fn description(&self) -> &str { ...
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu-command/src/filters/last.rs
crates/nu-command/src/filters/last.rs
use nu_engine::command_prelude::*; use nu_protocol::shell_error::io::IoError; use std::{collections::VecDeque, io::Read}; #[derive(Clone)] pub struct Last; impl Command for Last { fn name(&self) -> &str { "last" } fn signature(&self) -> Signature { Signature::build("last") .in...
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu-command/src/filters/default.rs
crates/nu-command/src/filters/default.rs
use std::{borrow::Cow, ops::Deref}; use nu_engine::{ClosureEval, command_prelude::*}; use nu_protocol::{ ListStream, ReportMode, ShellWarning, Signals, ast::{Expr, Expression}, report_shell_warning, }; #[derive(Clone)] pub struct Default; impl Command for Default { fn name(&self) -> &str { "d...
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu-command/src/filters/find.rs
crates/nu-command/src/filters/find.rs
use fancy_regex::{Regex, escape}; use nu_ansi_term::Style; use nu_color_config::StyleComputer; use nu_engine::command_prelude::*; use nu_protocol::Config; #[derive(Clone)] pub struct Find; impl Command for Find { fn name(&self) -> &str { "find" } fn signature(&self) -> Signature { Signatu...
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu-command/src/filters/enumerate.rs
crates/nu-command/src/filters/enumerate.rs
use nu_engine::command_prelude::*; #[derive(Clone)] pub struct Enumerate; impl Command for Enumerate { fn name(&self) -> &str { "enumerate" } fn description(&self) -> &str { "Enumerate the elements in a stream." } fn search_terms(&self) -> Vec<&str> { vec!["itemize"] ...
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu-command/src/filters/reduce.rs
crates/nu-command/src/filters/reduce.rs
use nu_engine::{ClosureEval, command_prelude::*}; use nu_protocol::engine::Closure; #[derive(Clone)] pub struct Reduce; impl Command for Reduce { fn name(&self) -> &str { "reduce" } fn signature(&self) -> Signature { Signature::build("reduce") .input_output_types(vec![ ...
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu-command/src/filters/uniq_by.rs
crates/nu-command/src/filters/uniq_by.rs
pub use super::uniq; use nu_engine::{column::nonexistent_column, command_prelude::*}; #[derive(Clone)] pub struct UniqBy; impl Command for UniqBy { fn name(&self) -> &str { "uniq-by" } fn signature(&self) -> Signature { Signature::build("uniq-by") .input_output_types(vec![ ...
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu-command/src/filters/uniq.rs
crates/nu-command/src/filters/uniq.rs
use itertools::Itertools; use nu_engine::command_prelude::*; use nu_protocol::PipelineMetadata; use nu_utils::IgnoreCaseExt; use std::collections::{HashMap, hash_map::IntoIter}; #[derive(Clone)] pub struct Uniq; impl Command for Uniq { fn name(&self) -> &str { "uniq" } fn signature(&self) -> Sign...
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu-command/src/filters/utils.rs
crates/nu-command/src/filters/utils.rs
use nu_engine::{CallExt, ClosureEval}; use nu_protocol::{ IntoPipelineData, PipelineData, ShellError, Span, Value, engine::{Call, Closure, EngineState, Stack}, }; pub fn chain_error_with_input( error_source: ShellError, input_is_error: bool, span: Span, ) -> ShellError { if !input_is_error { ...
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu-command/src/filters/chunk_by.rs
crates/nu-command/src/filters/chunk_by.rs
use super::utils::chain_error_with_input; use nu_engine::{ClosureEval, command_prelude::*}; use nu_protocol::Signals; use nu_protocol::engine::Closure; #[derive(Clone)] pub struct ChunkBy; impl Command for ChunkBy { fn name(&self) -> &str { "chunk-by" } fn signature(&self) -> Signature { ...
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu-command/src/filters/any.rs
crates/nu-command/src/filters/any.rs
use super::utils; use nu_engine::command_prelude::*; #[derive(Clone)] pub struct Any; impl Command for Any { fn name(&self) -> &str { "any" } fn signature(&self) -> Signature { Signature::build(self.name()) .input_output_types(vec![(Type::List(Box::new(Type::Any)), Type::Bool)...
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu-command/src/filters/transpose.rs
crates/nu-command/src/filters/transpose.rs
use nu_engine::{column::get_columns, command_prelude::*}; #[derive(Clone)] pub struct Transpose; pub struct TransposeArgs { rest: Vec<Spanned<String>>, header_row: bool, ignore_titles: bool, as_record: bool, keep_last: bool, keep_all: bool, } impl Command for Transpose { fn name(&self) ->...
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu-command/src/filters/mod.rs
crates/nu-command/src/filters/mod.rs
mod all; mod any; mod append; mod chunk_by; mod chunks; mod columns; mod compact; mod default; mod drop; mod each; mod empty; mod enumerate; mod every; mod filter; mod find; mod first; mod flatten; mod get; mod group_by; mod headers; mod insert; mod interleave; mod is_empty; mod is_not_empty; mod items; mod join; mod l...
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu-command/src/filters/append.rs
crates/nu-command/src/filters/append.rs
use nu_engine::command_prelude::*; #[derive(Clone)] pub struct Append; impl Command for Append { fn name(&self) -> &str { "append" } fn signature(&self) -> nu_protocol::Signature { Signature::build("append") .input_output_types(vec![(Type::Any, Type::List(Box::new(Type::Any)))...
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu-command/src/filters/join.rs
crates/nu-command/src/filters/join.rs
use nu_engine::command_prelude::*; use nu_protocol::Config; use std::{ cmp::max, collections::{HashMap, HashSet}, }; #[derive(Clone)] pub struct Join; enum JoinType { Inner, Left, Right, Outer, } enum IncludeInner { No, Yes, } impl Command for Join { fn name(&self) -> &str { ...
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu-command/src/filters/window.rs
crates/nu-command/src/filters/window.rs
use nu_engine::command_prelude::*; use nu_protocol::ListStream; use std::num::NonZeroUsize; #[derive(Clone)] pub struct Window; impl Command for Window { fn name(&self) -> &str { "window" } fn signature(&self) -> Signature { Signature::build("window") .input_output_types(vec![...
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu-command/src/filters/reject.rs
crates/nu-command/src/filters/reject.rs
use nu_engine::command_prelude::*; use nu_protocol::{DeprecationEntry, DeprecationType, ReportMode, ast::PathMember, casing::Casing}; use std::{cmp::Reverse, collections::HashSet}; #[derive(Clone)] pub struct Reject; impl Command for Reject { fn name(&self) -> &str { "reject" } fn signature(&self...
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu-command/src/filters/each.rs
crates/nu-command/src/filters/each.rs
use super::utils::chain_error_with_input; use nu_engine::{ClosureEval, ClosureEvalOnce, command_prelude::*}; use nu_protocol::engine::Closure; #[derive(Clone)] pub struct Each; impl Command for Each { fn name(&self) -> &str { "each" } fn description(&self) -> &str { "Run a closure on each...
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu-command/src/filters/is_empty.rs
crates/nu-command/src/filters/is_empty.rs
use crate::filters::empty::empty; use nu_engine::command_prelude::*; #[derive(Clone)] pub struct IsEmpty; impl Command for IsEmpty { fn name(&self) -> &str { "is-empty" } fn signature(&self) -> Signature { Signature::build("is-empty") .input_output_types(vec![(Type::Any, Type:...
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu-command/src/filters/lines.rs
crates/nu-command/src/filters/lines.rs
use nu_engine::command_prelude::*; #[derive(Clone)] pub struct Lines; impl Command for Lines { fn name(&self) -> &str { "lines" } fn description(&self) -> &str { "Converts input to lines." } fn signature(&self) -> nu_protocol::Signature { Signature::build("lines") ...
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu-command/src/filters/group_by.rs
crates/nu-command/src/filters/group_by.rs
use indexmap::IndexMap; use nu_engine::{ClosureEval, command_prelude::*}; use nu_protocol::{FromValue, IntoValue, engine::Closure}; #[derive(Clone)] pub struct GroupBy; impl Command for GroupBy { fn name(&self) -> &str { "group-by" } fn signature(&self) -> Signature { Signature::build("gr...
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu-command/src/filters/sort_by.rs
crates/nu-command/src/filters/sort_by.rs
use nu_engine::{ClosureEval, command_prelude::*}; use crate::Comparator; #[derive(Clone)] pub struct SortBy; impl Command for SortBy { fn name(&self) -> &str { "sort-by" } fn signature(&self) -> nu_protocol::Signature { Signature::build("sort-by") .input_output_types(vec![ ...
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu-command/src/filters/length.rs
crates/nu-command/src/filters/length.rs
use std::io::Read; use nu_engine::command_prelude::*; #[derive(Clone)] pub struct Length; impl Command for Length { fn name(&self) -> &str { "length" } fn description(&self) -> &str { "Count the number of items in an input list, rows in a table, or bytes in binary data." } fn si...
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu-command/src/filters/zip.rs
crates/nu-command/src/filters/zip.rs
use nu_engine::{ClosureEvalOnce, command_prelude::*}; #[derive(Clone)] pub struct Zip; impl Command for Zip { fn name(&self) -> &str { "zip" } fn description(&self) -> &str { "Combine a stream with the input." } fn signature(&self) -> nu_protocol::Signature { Signature::b...
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu-command/src/filters/every.rs
crates/nu-command/src/filters/every.rs
use nu_engine::command_prelude::*; #[derive(Clone)] pub struct Every; impl Command for Every { fn name(&self) -> &str { "every" } fn signature(&self) -> Signature { Signature::build("every") .input_output_types(vec![( Type::List(Box::new(Type::Any)), ...
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu-command/src/filters/shuffle.rs
crates/nu-command/src/filters/shuffle.rs
use nu_engine::command_prelude::*; use rand::{prelude::SliceRandom, rng}; #[derive(Clone)] pub struct Shuffle; impl Command for Shuffle { fn name(&self) -> &str { "shuffle" } fn signature(&self) -> nu_protocol::Signature { Signature::build("shuffle") .input_output_types(vec![(...
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu-command/src/filters/wrap.rs
crates/nu-command/src/filters/wrap.rs
use nu_engine::command_prelude::*; #[derive(Clone)] pub struct Wrap; impl Command for Wrap { fn name(&self) -> &str { "wrap" } fn description(&self) -> &str { "Wrap the value into a column." } fn signature(&self) -> nu_protocol::Signature { Signature::build("wrap") ...
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu-command/src/filters/get.rs
crates/nu-command/src/filters/get.rs
use std::borrow::Cow; use nu_engine::command_prelude::*; use nu_protocol::{DeprecationEntry, DeprecationType, ReportMode, Signals, ast::PathMember}; #[derive(Clone)] pub struct Get; impl Command for Get { fn name(&self) -> &str { "get" } fn description(&self) -> &str { "Extract data usin...
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu-command/src/filters/take/take_until.rs
crates/nu-command/src/filters/take/take_until.rs
use nu_engine::{ClosureEval, command_prelude::*}; use nu_protocol::engine::Closure; #[derive(Clone)] pub struct TakeUntil; impl Command for TakeUntil { fn name(&self) -> &str { "take until" } fn signature(&self) -> Signature { Signature::build(self.name()) .input_output_types(...
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu-command/src/filters/take/take_.rs
crates/nu-command/src/filters/take/take_.rs
use nu_engine::command_prelude::*; use nu_protocol::Signals; #[derive(Clone)] pub struct Take; impl Command for Take { fn name(&self) -> &str { "take" } fn signature(&self) -> Signature { Signature::build("take") .input_output_types(vec![ (Type::table(), Type::...
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu-command/src/filters/take/mod.rs
crates/nu-command/src/filters/take/mod.rs
mod take_; mod take_until; mod take_while; pub use take_::Take; pub use take_until::TakeUntil; pub use take_while::TakeWhile;
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu-command/src/filters/take/take_while.rs
crates/nu-command/src/filters/take/take_while.rs
use nu_engine::{ClosureEval, command_prelude::*}; use nu_protocol::engine::Closure; #[derive(Clone)] pub struct TakeWhile; impl Command for TakeWhile { fn name(&self) -> &str { "take while" } fn signature(&self) -> Signature { Signature::build(self.name()) .input_output_types(...
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu-command/src/filters/drop/column.rs
crates/nu-command/src/filters/drop/column.rs
use nu_engine::command_prelude::*; use std::collections::HashSet; #[derive(Clone)] pub struct DropColumn; impl Command for DropColumn { fn name(&self) -> &str { "drop column" } fn signature(&self) -> Signature { Signature::build(self.name()) .input_output_types(vec![ ...
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu-command/src/filters/drop/nth.rs
crates/nu-command/src/filters/drop/nth.rs
use nu_engine::command_prelude::*; use nu_protocol::{PipelineIterator, Range}; use std::collections::VecDeque; use std::ops::Bound; #[derive(Clone)] pub struct DropNth; impl Command for DropNth { fn name(&self) -> &str { "drop nth" } fn signature(&self) -> Signature { Signature::build("dr...
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu-command/src/filters/drop/mod.rs
crates/nu-command/src/filters/drop/mod.rs
pub mod column; pub mod drop_; pub mod nth; pub use column::DropColumn; pub use drop_::Drop; pub use nth::DropNth;
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu-command/src/filters/drop/drop_.rs
crates/nu-command/src/filters/drop/drop_.rs
use nu_engine::command_prelude::*; #[derive(Clone)] pub struct Drop; impl Command for Drop { fn name(&self) -> &str { "drop" } fn signature(&self) -> Signature { Signature::build("drop") .input_output_types(vec![ (Type::table(), Type::table()), ...
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu-command/src/filters/skip/skip_.rs
crates/nu-command/src/filters/skip/skip_.rs
use nu_engine::command_prelude::*; #[derive(Clone)] pub struct Skip; impl Command for Skip { fn name(&self) -> &str { "skip" } fn signature(&self) -> Signature { Signature::build(self.name()) .input_output_types(vec![ (Type::table(), Type::table()), ...
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu-command/src/filters/skip/skip_while.rs
crates/nu-command/src/filters/skip/skip_while.rs
use nu_engine::{ClosureEval, command_prelude::*}; use nu_protocol::engine::Closure; #[derive(Clone)] pub struct SkipWhile; impl Command for SkipWhile { fn name(&self) -> &str { "skip while" } fn signature(&self) -> Signature { Signature::build(self.name()) .input_output_types(...
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu-command/src/filters/skip/mod.rs
crates/nu-command/src/filters/skip/mod.rs
mod skip_; mod skip_until; mod skip_while; pub use skip_::Skip; pub use skip_until::SkipUntil; pub use skip_while::SkipWhile;
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu-command/src/filters/skip/skip_until.rs
crates/nu-command/src/filters/skip/skip_until.rs
use nu_engine::{ClosureEval, command_prelude::*}; use nu_protocol::engine::Closure; #[derive(Clone)] pub struct SkipUntil; impl Command for SkipUntil { fn name(&self) -> &str { "skip until" } fn signature(&self) -> Signature { Signature::build(self.name()) .input_output_types(...
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu-command/src/filters/merge/merge_.rs
crates/nu-command/src/filters/merge/merge_.rs
use super::common::{MergeStrategy, do_merge, typecheck_merge}; use nu_engine::command_prelude::*; #[derive(Clone)] pub struct Merge; impl Command for Merge { fn name(&self) -> &str { "merge" } fn description(&self) -> &str { "Merge the input with a record or table, overwriting values in m...
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu-command/src/filters/merge/deep.rs
crates/nu-command/src/filters/merge/deep.rs
use super::common::{ListMerge, MergeStrategy, do_merge, typecheck_merge}; use nu_engine::command_prelude::*; #[derive(Clone)] pub struct MergeDeep; impl Command for MergeDeep { fn name(&self) -> &str { "merge deep" } fn description(&self) -> &str { "Merge the input with a record or table,...
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu-command/src/filters/merge/mod.rs
crates/nu-command/src/filters/merge/mod.rs
mod common; pub mod deep; pub mod merge_; pub use deep::MergeDeep; pub use merge_::Merge;
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu-command/src/filters/merge/common.rs
crates/nu-command/src/filters/merge/common.rs
use nu_engine::command_prelude::*; #[derive(Copy, Clone)] pub(crate) enum MergeStrategy { /// Key-value pairs present in lhs and rhs are overwritten by values in rhs Shallow, /// Records are merged recursively, otherwise same behavior as shallow Deep(ListMerge), } #[derive(Copy, Clone)] pub(crate) enu...
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu-command/src/bytes/starts_with.rs
crates/nu-command/src/bytes/starts_with.rs
use nu_cmd_base::input_handler::{CmdArgument, operate}; use nu_engine::command_prelude::*; use nu_protocol::shell_error::io::IoError; use std::io::Read; struct Arguments { pattern: Vec<u8>, cell_paths: Option<Vec<CellPath>>, } impl CmdArgument for Arguments { fn take_cell_paths(&mut self) -> Option<Vec<Ce...
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu-command/src/bytes/reverse.rs
crates/nu-command/src/bytes/reverse.rs
use nu_cmd_base::input_handler::{CellPathOnlyArgs, operate}; use nu_engine::command_prelude::*; #[derive(Clone)] pub struct BytesReverse; impl Command for BytesReverse { fn name(&self) -> &str { "bytes reverse" } fn signature(&self) -> Signature { Signature::build("bytes reverse") ...
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu-command/src/bytes/bytes_.rs
crates/nu-command/src/bytes/bytes_.rs
use nu_engine::{command_prelude::*, get_full_help}; #[derive(Clone)] pub struct Bytes; impl Command for Bytes { fn name(&self) -> &str { "bytes" } fn signature(&self) -> Signature { Signature::build("bytes") .category(Category::Bytes) .input_output_types(vec![(Type...
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu-command/src/bytes/collect.rs
crates/nu-command/src/bytes/collect.rs
use itertools::Itertools; use nu_engine::command_prelude::*; #[derive(Clone, Copy)] pub struct BytesCollect; impl Command for BytesCollect { fn name(&self) -> &str { "bytes collect" } fn signature(&self) -> Signature { Signature::build("bytes collect") .input_output_types(vec!...
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu-command/src/bytes/index_of.rs
crates/nu-command/src/bytes/index_of.rs
use nu_cmd_base::input_handler::{CmdArgument, operate}; use nu_engine::command_prelude::*; struct Arguments { pattern: Vec<u8>, end: bool, all: bool, cell_paths: Option<Vec<CellPath>>, } impl CmdArgument for Arguments { fn take_cell_paths(&mut self) -> Option<Vec<CellPath>> { self.cell_pat...
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu-command/src/bytes/replace.rs
crates/nu-command/src/bytes/replace.rs
use nu_cmd_base::input_handler::{CmdArgument, operate}; use nu_engine::command_prelude::*; struct Arguments { find: Vec<u8>, replace: Vec<u8>, cell_paths: Option<Vec<CellPath>>, all: bool, } impl CmdArgument for Arguments { fn take_cell_paths(&mut self) -> Option<Vec<CellPath>> { self.cell...
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu-command/src/bytes/mod.rs
crates/nu-command/src/bytes/mod.rs
mod add; mod at; mod build_; mod bytes_; mod collect; mod ends_with; mod index_of; mod length; mod remove; mod replace; mod reverse; mod split; mod starts_with; pub use add::BytesAdd; pub use at::BytesAt; pub use build_::BytesBuild; pub use bytes_::Bytes; pub use collect::BytesCollect; pub use ends_with::BytesEndsWith...
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu-command/src/bytes/ends_with.rs
crates/nu-command/src/bytes/ends_with.rs
use nu_cmd_base::input_handler::{CmdArgument, operate}; use nu_engine::command_prelude::*; use nu_protocol::shell_error::io::IoError; use std::{ collections::VecDeque, io::{self, BufRead}, }; struct Arguments { pattern: Vec<u8>, cell_paths: Option<Vec<CellPath>>, } impl CmdArgument for Arguments { ...
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu-command/src/bytes/at.rs
crates/nu-command/src/bytes/at.rs
use std::ops::Bound; use nu_cmd_base::input_handler::{CmdArgument, operate}; use nu_engine::command_prelude::*; use nu_protocol::{IntRange, Range}; #[derive(Clone)] pub struct BytesAt; struct Arguments { range: IntRange, cell_paths: Option<Vec<CellPath>>, } impl CmdArgument for Arguments { fn take_cell_...
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu-command/src/bytes/build_.rs
crates/nu-command/src/bytes/build_.rs
use nu_engine::command_prelude::*; #[derive(Clone)] pub struct BytesBuild; impl Command for BytesBuild { fn name(&self) -> &str { "bytes build" } fn description(&self) -> &str { "Create bytes from the arguments." } fn search_terms(&self) -> Vec<&str> { vec!["concatenate",...
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu-command/src/bytes/length.rs
crates/nu-command/src/bytes/length.rs
use nu_cmd_base::input_handler::{CellPathOnlyArgs, operate}; use nu_engine::command_prelude::*; #[derive(Clone)] pub struct BytesLen; impl Command for BytesLen { fn name(&self) -> &str { "bytes length" } fn signature(&self) -> Signature { Signature::build("bytes length") .inpu...
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu-command/src/bytes/add.rs
crates/nu-command/src/bytes/add.rs
use nu_cmd_base::input_handler::{CmdArgument, operate}; use nu_engine::command_prelude::*; struct Arguments { added_data: Vec<u8>, index: Option<usize>, end: bool, cell_paths: Option<Vec<CellPath>>, } impl CmdArgument for Arguments { fn take_cell_paths(&mut self) -> Option<Vec<CellPath>> { ...
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu-command/src/bytes/remove.rs
crates/nu-command/src/bytes/remove.rs
use nu_cmd_base::input_handler::{CmdArgument, operate}; use nu_engine::command_prelude::*; struct Arguments { pattern: Vec<u8>, end: bool, cell_paths: Option<Vec<CellPath>>, all: bool, } impl CmdArgument for Arguments { fn take_cell_paths(&mut self) -> Option<Vec<CellPath>> { self.cell_pat...
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu-command/src/bytes/split.rs
crates/nu-command/src/bytes/split.rs
use nu_engine::command_prelude::*; #[derive(Clone)] pub struct BytesSplit; impl Command for BytesSplit { fn name(&self) -> &str { "bytes split" } fn signature(&self) -> Signature { Signature::build("bytes split") .input_output_types(vec![(Type::Binary, Type::list(Type::Binary)...
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu-command/src/experimental/job_id.rs
crates/nu-command/src/experimental/job_id.rs
use nu_engine::command_prelude::*; #[derive(Clone)] pub struct JobId; impl Command for JobId { fn name(&self) -> &str { "job id" } fn description(&self) -> &str { "Get id of current job." } fn extra_description(&self) -> &str { "This command returns the job id for the cur...
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu-command/src/experimental/job_recv.rs
crates/nu-command/src/experimental/job_recv.rs
use std::{ sync::mpsc::{RecvTimeoutError, TryRecvError}, time::{Duration, Instant}, }; use nu_engine::command_prelude::*; use nu_protocol::{ Signals, engine::{FilterTag, Mailbox}, }; #[derive(Clone)] pub struct JobRecv; const CTRL_C_CHECK_INTERVAL: Duration = Duration::from_millis(100); impl Comman...
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu-command/src/experimental/job_kill.rs
crates/nu-command/src/experimental/job_kill.rs
use nu_engine::command_prelude::*; use nu_protocol::JobId; #[derive(Clone)] pub struct JobKill; impl Command for JobKill { fn name(&self) -> &str { "job kill" } fn description(&self) -> &str { "Kill a background job." } fn signature(&self) -> nu_protocol::Signature { Sign...
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu-command/src/experimental/job_unfreeze.rs
crates/nu-command/src/experimental/job_unfreeze.rs
use nu_engine::command_prelude::*; use nu_protocol::{ JobId, engine::{FrozenJob, Job, ThreadJob}, process::check_ok, }; use nu_system::{ForegroundWaitStatus, kill_by_pid}; #[derive(Clone)] pub struct JobUnfreeze; impl Command for JobUnfreeze { fn name(&self) -> &str { "job unfreeze" } ...
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu-command/src/experimental/job_tag.rs
crates/nu-command/src/experimental/job_tag.rs
use nu_engine::command_prelude::*; use nu_protocol::JobId; #[derive(Clone)] pub struct JobTag; impl Command for JobTag { fn name(&self) -> &str { "job tag" } fn description(&self) -> &str { "Add a description tag to a background job." } fn signature(&self) -> nu_protocol::Signatu...
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu-command/src/experimental/mod.rs
crates/nu-command/src/experimental/mod.rs
mod is_admin; mod job; mod job_id; mod job_kill; mod job_list; mod job_spawn; mod job_tag; #[cfg(all(unix, feature = "os"))] mod job_unfreeze; #[cfg(not(target_family = "wasm"))] mod job_flush; #[cfg(not(target_family = "wasm"))] mod job_recv; #[cfg(not(target_family = "wasm"))] mod job_send; pub use is_admin::IsAdm...
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu-command/src/experimental/job_flush.rs
crates/nu-command/src/experimental/job_flush.rs
use nu_engine::command_prelude::*; use nu_protocol::engine::FilterTag; #[derive(Clone)] pub struct JobFlush; impl Command for JobFlush { fn name(&self) -> &str { "job flush" } fn description(&self) -> &str { "Clear this job's mailbox." } fn extra_description(&self) -> &str { ...
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu-command/src/experimental/job_send.rs
crates/nu-command/src/experimental/job_send.rs
use nu_engine::command_prelude::*; use nu_protocol::{JobId, engine::FilterTag}; #[derive(Clone)] pub struct JobSend; impl Command for JobSend { fn name(&self) -> &str { "job send" } fn description(&self) -> &str { "Send a message to the mailbox of a job." } fn extra_description(&...
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu-command/src/experimental/job_spawn.rs
crates/nu-command/src/experimental/job_spawn.rs
use std::{ sync::{ Arc, Mutex, atomic::{AtomicBool, AtomicU32}, mpsc, }, thread, }; use nu_engine::{ClosureEvalOnce, command_prelude::*}; use nu_protocol::{ OutDest, Signals, engine::{Closure, CurrentJob, Job, Mailbox, Redirection, ThreadJob}, report_shell_error, }; #[d...
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu-command/src/experimental/job.rs
crates/nu-command/src/experimental/job.rs
use nu_engine::{command_prelude::*, get_full_help}; #[derive(Clone)] pub struct Job; impl Command for Job { fn name(&self) -> &str { "job" } fn signature(&self) -> Signature { Signature::build("job") .category(Category::Experimental) .input_output_types(vec![(Type:...
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu-command/src/experimental/job_list.rs
crates/nu-command/src/experimental/job_list.rs
use nu_engine::command_prelude::*; use nu_protocol::engine::{FrozenJob, Job}; #[derive(Clone)] pub struct JobList; impl Command for JobList { fn name(&self) -> &str { "job list" } fn description(&self) -> &str { "List background jobs." } fn signature(&self) -> nu_protocol::Signat...
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu-command/src/experimental/is_admin.rs
crates/nu-command/src/experimental/is_admin.rs
use nu_engine::command_prelude::*; #[derive(Clone)] pub struct IsAdmin; impl Command for IsAdmin { fn name(&self) -> &str { "is-admin" } fn description(&self) -> &str { "Check if nushell is running with administrator or root privileges." } fn signature(&self) -> nu_protocol::Sign...
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu-command/src/network/version_check.rs
crates/nu-command/src/network/version_check.rs
use nu_engine::command_prelude::*; use serde::Deserialize; use update_informer::{ Check, Package, Registry, Result as UpdateResult, http_client::{GenericHttpClient, HttpClient}, registry, }; #[derive(Clone)] pub struct VersionCheck; impl Command for VersionCheck { fn name(&self) -> &str { "ver...
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false