commit 10732b38fae41766d68a2081d11bbb73ef69479c from: leoshimo <56844000+leoshimo@users.noreply.github.com> date: Fri Dec 8 23:33:30 2023 UTC docs: improve readability of shell commands in README.md commit - 6a903a111c76d8bfaae98078c24f39d03fc26a69 commit + 10732b38fae41766d68a2081d11bbb73ef69479c blob - ebeeb68221f5b006c060e969f691e8a4b3e3d4f8 blob + 3bc9787c3fa1ead1dfb12fb1c4b63edd127e9051 --- README.md +++ README.md @@ -102,16 +102,22 @@ An gallery of examples to get the inspiration flowing ```sh # Creating Summary of Meeting Transcripts -$ cat meeting_saved_chat.txt | cogni -s "Extract the links mentioned in this transcript, and provide a high level summary of the discussion points" +$ cat meeting_saved_chat.txt \ + | cogni -s "Extract the links mentioned in this transcript, and provide a high level summary of the discussion points" # Narrate Weather Summary -$ curl -s "wttr.in/?1" | cogni -s "Summarize today's weather using the output. Respond in 1 short sentence." | say +$ curl -s "wttr.in/?1" \ + | cogni -s "Summarize today's weather using the output. Respond in 1 short sentence." \ + | say # Create a ffmpeg cheatsheet from man page -$ man ffmpeg | cogni -T 300 -s "Create a cheatsheet given a man page. Output should be in Markdown, and should be a set of example usages under headings." > cheatsheet.md +$ man ffmpeg \ + | cogni -T 300 -s "Create a cheatsheet given a man page. Output should be in Markdown, and should be a set of example usages under headings." \ + > cheatsheet.md # Catchup after long hiatus from git repo -$ git show -n 3 | cogni -s "What was I working on recently?" +$ git commit -m git show -n 3 \ + | cogni -s "What was I working on recently?" ``` ### In Emacs