Flash Shell Parser Demo

WebAssembly-powered shell code parser

View on GitHub

Shell Code Input

• ls -la | grep test
• echo "Hello $USER"
• for i in {1..5}; do echo $i; done
• if [ -f ~/.bashrc ]; then source ~/.bashrc; fi
• function greet() { echo "Hello $1"; }

Parser Output (AST)

Ready to parse shell code...