Skip to content

Instantly share code, notes, and snippets.

@rubenarakelyan
Last active March 31, 2022 12:22
Show Gist options
  • Save rubenarakelyan/c1e7005ae200e0a55347e192c49394e3 to your computer and use it in GitHub Desktop.
Save rubenarakelyan/c1e7005ae200e0a55347e192c49394e3 to your computer and use it in GitHub Desktop.
List of useful mini bash scripts

Find files from a list

while read -r file
do
  find . -name "$file"
done < list.txt

Convert JSON to CSV

cat file.json | jq -r '(.[0] | keys_unsorted) as $keys | $keys, map([.[ $keys[] ]])[] | @csv' > file.csv
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment