Travis A. Everett

Results 70 issues of Travis A. Everett

This [section](https://github.com/Ventto/mons/blob/375bbba3aa700c8b3b33645a7fb70605c8b0ff0c/mons.sh#L85-L87) in mons is giving resholve a little trouble: ```shell lib='%LIBDIR%/liblist.sh' [ ! -r "$lib" ] && { "$lib: library not found."; exit 1; } . "$lib" ``` The...

ex: `Whoooo buddy: [Errno 2] No such file or directory: Word('/etc/bash.local' spans 1 position at spid 163)`

Currently, resholve doesn't really care if you do something like `SHELL=/bin/bash`, so long as you don't then try to invoke `$SHELL` as a command (for a real-world case, see the...

I haven't really considered specifics, but it would be nice to have a tool that can _help_ figure out what variant/version of a command/utility a given script is using just...

help wanted

`dc` has an instance of sub-exec via its `!` command that isn't as straightforward to support as some others. I managed to find a way to raise an error when...

I'm in the process of implementing general support for resolving of commands that appear in the arguments to other commands, which should be available in the coming weeks. `awk` can...

I'm in the process of implementing general support for resolving of commands that appear in the arguments to other commands, which should be available in the coming weeks. `sed` has...

feedback wanted

I encountered a case of resholve falling over when OSH hit during resholve's new nested-resolution routine. resholve should now ~handle this and just print a warning, but I don't have...

feedback wanted

resholve special-cases a number of builtins (alias, builtin, command, coproc, eval, and .|source) to resolve executables that appear in their arguments. In theory, resholve might do the "wrong" thing if...

feedback wanted

I'll start off by saying that I suspect this fruit is too high up the tree to bother with. I stumbled on the following in bats-core: ```bash local hostname="${HOST:-}" [[...