justrs
Dependencies
cargo install just && cargo install ripgrep
Install
$ git clone https://github.com/YoungHaKim7/justrs
$ cd justrs
$ cargo install --path .
$ cargo install justrs
$ cargo install --git https://github.com/YoungHaKim7/justrs.git
just list
Available recipes:
a SEARCH asm METHOD c clean doc eos es ex fi gi hir llvm mir n r rr rupdate rustupdate t tex tn tnp toolremove TOOLCHAINS tp w ws xv STR xx
justfile공부하기 좋다
cargo-audit(보안 업데이트)
$ cargo install cargo-audit --locked
- 표준 오류(stderr) 와 표준 출력(stdout) 을 하나의 스트림으로 합치기 위해 사용하는 리디렉션 구문
- 숫자 1은 stdout, 2는 stderr를 의미하며,
&는 파일 디스크립터를 참조한다는 표시로 사용됨
2>&1은 “stderr를 현재 stdout이 향하는 곳으로 보낸다”는 뜻이며, **출력 순서에…
AI fix
- All tests pass. The fix was to use
.current_dir(temp_dir.path()) on the Command instead of changing the process's current directory with
env::set_current_dir(). This ensures cargo run executes in the temp directory and creates the justfile in the correct location.