Skip to content

Commit

Permalink
mandb: parse "--help" for specified commands
Browse files Browse the repository at this point in the history
  • Loading branch information
akinomyoga committed Dec 11, 2021
1 parent a79280e commit e1ad2f1
Show file tree
Hide file tree
Showing 4 changed files with 492 additions and 20 deletions.
9 changes: 9 additions & 0 deletions ble.pp
Expand Up @@ -720,6 +720,15 @@ function ble/bin/awk {
# Do not overwrite by .freeze-utility-path
function ble/bin/.frozen:awk { :; }

function ble/util/mkd {
local dir
for dir; do
[[ -d $dir ]] && continue
[[ -e $dir || -L $dir ]] && ble/bin/rm -f "$dir"
ble/bin/mkdir -p "$dir"
done
}

_ble_bin_awk_supports_null_RS=
function ble/bin/awk.supports-null-record-separator {
if [[ ! $_ble_bin_awk_supports_null_RS ]]; then
Expand Down

0 comments on commit e1ad2f1

Please sign in to comment.