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.
Asked
Active
Viewed 91 times
2 Answers
1
They're in a separate bash-doc package:
$ apt-file search bash.info bash-doc: /usr/share/info/bash.info.gz
u1686_grawity
- 426,297
- 64
- 894
- 966
-
Yo thank you!! All I had to do was `sudo apt install bash-doc`. Great answer. – Okey Jan 22 '21 at 01:34
1
Update and install like this:
$ sudo apt-file update
$ sudo apt-file search bash.info
$ sudo apt install bash-doc
Okey
- 23
- 7
-
You could improve your answer by providing references or citations – Rohit Gupta Apr 14 '23 at 02:18