# Add code to your .zshrc or .bashrc file. then:
pbpaste | append "Refactor this code for me" | help coding
# Add code to your .zshrc or .bashrc file. then:
pbpaste | help coding
# Add code to your .zshrc or .bashrc file. then:
raw_query "What is the meaning of life?"
./consume_document/input.md
./consume_document/run.sh
파이프를 사용한 직접 입력
echo "Hello, world!" | ./translate.sh
파일 내용을 파이프로 전달
cat input.md | ./translate.sh
언어 옵션 지정:
echo "Bonjour le monde!" | ./translate.sh -s FR -t EN
여러 명령어 연결:
echo "Hello, world!" | ./translate.sh -s EN -t KO | ./translate.sh -s KO -t JA