shq-js

(★ 9)

Quote a string for safe use as a shell argument. Strips null characters.

File Explorer

  • .gitignore
  • package.json
  • README.md
  • shq.js

# Use via CDN

jsDelivr

jsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.

Command Glossary

Commands referenced in this DOCs, explained below.

🔍

opt

View Details ▼

Run optimizations and analyze LLVM source files.

opt -{{passname}} {{path/to/file.bc}} -S -o {{file_opt.bc}}

Run an optimization or analysis on a bitcode file:

opt {{-dot-cfg}} -S {{path/to/file.bc}} -disable-output

Output the Control Flow Graph of a function to a `.dot` file:

opt -O2 {{path/to/file.bc}} -S -o {{path/to/output_file.bc}}

Optimize the program at level 2 and output the result to another file:

// repository documentation