pier icon indicating copy to clipboard operation
pier copied to clipboard

A Linux script management CLI written in Rust

Results 10 pier issues
Sort by recently updated
recently updated
newest added

Pier is lacking shell completions at the moment for all the cli options, however since pier is using clap / structopt this does not seem relatively easy to do. To...

enhancement

may its a bit different concept. i possible please add to your to-do-list: add fuzzy search menu bolow. i tried to do something with https://github.com/sl5net/Lintalist4Linux thanks

I had to change some of the cli options around to make the shell completions more usable. To the user the cli should act the same however. Added build script...

This option would make migrating existing shell scripts to pier a lot easier! ## Example usage `echo 'for i in {1..10}; do echo $i; done' | pier add -a count_to_ten`...

enhancement

I think it would be cool if we had some sort of platform where we can share scripts, workflow examples, extensions etc. I always appreciate learning about other people's workflows...

Hello, Unfortunately, when I attempt to run `pier list` it simply segfaults: ```zsh zsh ❯ pier list [1] 503177 segmentation fault (core dumped) pier list ``` From syslog: ```log 2024-01-20T10:45:50.051578-06:00...

Bumps [prettytable-rs](https://github.com/phsym/prettytable-rs) from 0.8.0 to 0.10.0. Release notes Sourced from prettytable-rs's releases. v0.10.0 Fixed Fix panic due to incorrect ANSI escape handling #137 Fix display of empty tables #127 Changed...

dependencies

Hi! I noticed that in the `Cargo.toml` file Link-Time Optimization (LTO) for the project is not enabled. I suggest switching it on since it will reduce the binary size (always...

Resolves https://github.com/pier-cli/pier/issues/97

I read online uv can run Python scripts and automatically install dependencies by using the following shebang line: `#!/usr/bin/env -S uv run`. So I tried to create a small test...