Skip to content

Latest commit

 

History

History
55 lines (38 loc) · 845 Bytes

README.md

File metadata and controls

55 lines (38 loc) · 845 Bytes

Shell Scripts

append.sh

# Add code to your .zshrc or .bashrc file. then:
pbpaste | append "Refactor this code for me" | help coding

help.sh

# Add code to your .zshrc or .bashrc file. then:
pbpaste | help coding

raw_query.sh

# Add code to your .zshrc or .bashrc file. then:
raw_query "What is the meaning of life?"

consume_document.sh

./consume_document/input.md
./consume_document/run.sh

translate.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