Skip to content

Instantly share code, notes, and snippets.

View sapsaldog's full-sized avatar

Donghun Choi sapsaldog

  • WeTrials
  • Calgary / Canada
View GitHub Profile
@olih
olih / jq-cheetsheet.md
Last active March 28, 2025 08:54
jq Cheet Sheet

Processing JSON using jq

jq is useful to slice, filter, map and transform structured json data.

Installing jq

On Mac OS

brew install jq

@parse
parse / shell.c
Created May 11, 2011 07:31
Simple shell in C
/* Compile with: g++ -Wall –Werror -o shell shell.c */
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <ctype.h>
#include <unistd.h>
#include <sys/types.h>
#include <sys/wait.h>