Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

Nushell


Crates.io

Primero sigue esta guía: Instalar Rust.

Si tu distro lo tiene, solo instala nu o nushell. En Fedora:

sudo dnf install nu

Compilar desde fuente

Dependencias

# Debian
sudo apt install pkg-config libssl-dev build-essential

# RedHat/Fedora based
sudo yum install libxcb openssl-devel libX11-devel
cargo install nu --locked

Uso

Eliminar archivos con más de 3 semanas

ls | where modified <= (date now) - 3wk | each {|file| rm $file.name}