0

When I'm on my phones terminal termux and I run the commandbash info I get The GNU Bash Reference Manual info nodes . Yet then I run the same command on my ubuntu terminal all I get is the man pages from the info command.

Okey
  • 23

2 Answers2

1

They're in a separate bash-doc package:

$ apt-file search bash.info
bash-doc: /usr/share/info/bash.info.gz  
grawity
  • 501,077
1

Update and install like this:

$ sudo apt-file update

$ sudo apt-file search bash.info

$ sudo apt install bash-doc

Okey
  • 23