Using Pen.el on the CLI to generate code snippets

1 · Shane Mulligan · Aug. 9, 2021, 3:50 p.m.
Summary I wanted to demo some of the code gen commands using the cli interface with org-babel. Demos 1 penf -u pf-python-how-to "split a string" s = "hello world" print s.split() # ['hello', 'world'] 1 pena -u code-question bash "save an array into a variable" declare -a arr=([1]=1 [2]=2 [3]=3 [4]=4) declare -a arr=(1 2 3 4 5) declare -a array=(a b c d e f g) save_array=(${!...