Shell keybindings

On GNU/Linux one could add a keybinding to a shell for bash via `bind -x '"\C-i":ls'`

The `-x` flag is not valid on FreeBSD bash seemingly. Is there any way to mimick the `-x` behavior?
 
Ah Ok I realized my issue

I have been calling bash with a command when launching a new shell. When I leave the process that spawned I'm back in ash not bash. I needed to invoke bash whereupon the bind exposed is the bash bind which takes `-x` and works appropriately
 
Back
Top