diff --git a/tldr/linux/fuzzel b/tldr/linux/fuzzel new file mode 100644 index 00000000..4c2fa6c3 --- /dev/null +++ b/tldr/linux/fuzzel @@ -0,0 +1,46 @@ +--- +syntax: markdown +tags: [tldr, linux] +source: https://github.com/tldr-pages/tldr.git +--- +# fuzzel + +> A Wayland-native application launcher and fuzzy finder, inspired by `rofi` and `dmenu`. +> More information: . + +- Run applications: + +`fuzzel` + +- Run `fuzzel` in dmenu mode: + +`fuzzel {{-d|--dmenu}}` + +- Display a menu of the output of the `ls` command: + +`{{ls}} | fuzzel -d` + +- Display a menu with custom items separated by a new line (` +`): + +`echo -e "{{red}} +{{green}} +{{blue}}" | fuzzel -d` + +- Let the user choose between multiple items and save the selected one to a file: + +`echo -e "{{red}} +{{green}} +{{blue}}" | fuzzel -d > {{color.txt}}` + +- Reset apps usage count (default cache directory: `$XDG_CACHE_HOME/fuzzel`): + +`rm -v $HOME/.cache/fuzzel` + +- Launch `fuzzel` on a specific monitor, see `wlr-randr` or `swaymsg -t get_outputs`: + +`fuzzel -o "{{DP-1}}"` + +- Use `fuzzel` to do an online search: + +`fuzzel -d -l 0 --placeholder "{{Type your search}}" | sed 's/^/\"/g;s/$/\"/g' | xargs firefox --search` diff --git a/tldr/olevba b/tldr/olevba new file mode 100644 index 00000000..d065db9b --- /dev/null +++ b/tldr/olevba @@ -0,0 +1,34 @@ +--- +syntax: markdown +tags: [tldr, common] +source: https://github.com/tldr-pages/tldr.git +--- +# olevba + +> Parse OLE and OpenXML files (e.g., DOC, XLS, PPT, etc.) to extract VBA macros, deobfuscate, and analyze malicious code. +> Part of the `python-oletools` suite. +> For more information: . + +- Analyze a file, showing both macro code and analysis results: + +`olevba {{path/to/file}}` + +- Recursively analyze all supported files in a directory: + +`olevba -r {{path/to/directory}}` + +- Provide a password for encrypted Microsoft Office files (may be repeated): + +`olevba --password {{password}} {{path/to/encrypted_file}}` + +- Display only analysis results, without showing macro source code: + +`olevba -a {{path/to/file}}` + +- Display only macro source code: + +`olevba -c {{path/to/file}}` + +- Show obfuscated strings and their decoded content: + +`olevba --decode {{path/to/file}}` diff --git a/tldr/print b/tldr/print index 332c1872..a9eefd8e 100644 --- a/tldr/print +++ b/tldr/print @@ -15,7 +15,7 @@ source: https://github.com/tldr-pages/tldr.git - Print separated by newline(s): -`print -l "Linel" "Line 2" "Line3"` +`print -l "Line1" "Line 2" "Line3"` - Print without trailing newline: