shq-js
Quote a string for safe use as a shell argument. Strips null characters.
File Explorer
- dict2bash.js
- see_readme
- all.mjs
- bonus.dict2bash.mjs
- usage.mjs
- .gitignore
- package.json
- README.md
- shq.js
# Use via CDN
jsDelivrjsDelivr 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.
Link
Example
Command Glossary
Commands referenced in this DOCs, explained below.
opt
View Details ▼
opt
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
Was this content helpful?
(0 ratings)
