Home Explore Blog CI



8b8c74dee9787b89bf14035d1cb4aa81a7886fbfab71c9d700000002000037cb.png

Extracted Text
~/source/repos/forks/nushell(main) └─ $ ls | find toml # name type size modified 0 Cargo.toml File 8,203 2 days ago 1 Makefile.toml File 473 4 months ago 2 rustfmt.toml File 16 4 months ago ~/source/repos/forks/nushell(main) └─ $ ls | find toml sh # name type size modified 0 Cargo.toml File 8,203 2 days ago 1 Makefile.toml File 473 4 months ago 2 extra_features_cargo_install.sh File 54 2 months ago 3 rustfmt.toml File 16 4 months ago ~/source/repos/forks/nushell(main) └─ $ echo Cargo.toml | find toml Cargo.toml
Explanation
The image shows a terminal window with a series of commands being run. The first command is `ls | find toml`, which lists all files in the current directory and then filters the list to only include files with the `.toml` extension. The second command is `ls | find toml sh`, which lists all files in the current directory and then filters the list to only include files with the `.toml` or `.sh` extension. The last command is `echo Cargo.toml | find toml` which prints "Cargo.toml" and pipes the output to `find toml`.