# list all my repositories
gh repo list --json nameWithOwner --jq '.[].nameWithOwner'
# gh api
- Mod1+Mod2+key - modifier key 1, modifier key 2, key pressed at the same time
- key_comb1, key_comb2 - sequence of key combination 1 followed by key combination 2
- Normally Alt+key works the same as Esc, key (pause after Esc must not be long)
- In the descriptions Alt+key is preferred
- Alt is also called Meta
-
free
-
Google account needed
-
history, editable queries
-
multiple responses, response tuning (tone, length)
-
subjective
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# test_len.sh | |
# This script is used to test the maximum line length that can be processed | |
# using read -r and eval. | |
# testing line lengths divided by 10: | |
test_lengths='409 410 900 1800' |
https://stackoverflow.com/questions/32960857/how-to-convert-arbitrary-simple-json-to-csv-using-jq
jq -r '
(map(keys) | add | unique) as $cols
| map(. as $row | $cols | map($row[.])) as $rows
OlderNewer