Dabrien 'Dabe' Murphy
Dabrien 'Dabe' Murphy
Per [POSIX 1003.1](http://pubs.opengroup.org/onlinepubs/9699919799/utilities/grep.html#tag_20_55): > The *pattern_list*'s value shall consist of one or more patterns separated by `` characters So, for example, you could do: ``` bash% ls -l /etc/ |...
There's no way to produce the same output as grep: ``` grep -H ^root: /etc/passwd /etc/passwd:root:*:0:0:System Administrator:/var/root:/bin/sh ack --no-heading -H ^root: /etc/passwd /etc/passwd:12:root:*:0:0:System Administrator:/var/root:/bin/sh ``` This PR fixes lets you:...
The following seems inconsistent: ``` ack ^root: --output='Matched line $. of file $f' /etc/passwd /dev/null /etc/passwd
When I upgraded from Mojave to Monterey, I could no longer specify a particular audio device using the [device enumeration hack](https://superuser.com/questions/1506208/sox-how-to-specify-audio-input-and-audio-output-devices-on-osx): ``` sox -V6 -n -t coreaudio bogus ``` (They...
This silences a squajillion (okay, five) "uninitialized" warnings, and is more efficient, anyway...
In the spirit of, *"Just Because You Can't Do **Everything** Doesn't Mean You Can't Do ***\*ANYthing\****..."* I've updated `utils/h2ph.PL` to work under recent versions of MacOS/Xcode: - Track `typedef`, `struct`,...
Fall back to bash's default glob handling (i.e., list multiple matches) See: http://superuser.com/a/1022284/541376 ``` diff if [[ ${#toks[@]} -ne 0 ]]; then #2>/dev/null for direct invocation, e.g. in the _filedir...
Example: **`/etc/pam.d/ssh`** ``` auth sufficient pam_duo.so quiet ``` ## Summary of the change A trivial update that allows admins to silence `pam_info()` messages ## Test Plan I added two simple...
## Summary of the change Nothing big; it's pretty much just like it says on the tin — allow, e.g., `/etc/pam.d/sshd` to use: ``` auth sufficient pam_duo.so quiet ^^^^^ ```...