kmax
kmax copied to clipboard
Expand paths to linux-ksrc for kismet
Currently ~/linux-5.16 doesn't work for kismet, while ${HOME}/linux-5.16 does.
Using tilde (~/
) seems to work for me:
kismet -a x86_64 --linux-ksrc ~/linux/linux-next
However, using quotation marks ("
) around the path that involves tilde sign (~/
) won't work:
kismet -a x86_64 --linux-ksrc "~/linux/linux-next" #< This won't work
I think bash is responsible for tilde expansion, and it only expands if unquoted (bash ref).
Do you experience this with unquoted tilde?