Heray-Was-Here
Server : Apache
System : Linux vps43555.mylogin.co 3.10.0-1160.53.1.vz7.185.3 #1 SMP Tue Jan 25 12:49:12 MSK 2022 x86_64
User : redsea ( 60651)
PHP Version : 7.4.32
Disable Function : NONE
Directory :  /usr/share/fish/functions/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : //usr/share/fish/functions/man.fish
function man --description "Format and display the on-line manual pages"

	# Work around the "builtin" manpage that everything symlinks to,
	# by prepending our fish datadir to man. This also ensures that man gives fish's
	# man pages priority, without having to put fish's bin directories first in $PATH

	# Notice local but exported variable
	set -lx MANPATH (string join : $MANPATH)
	if test -z "$MANPATH"
		type -q manpath; and set MANPATH (command manpath)
	end
	set -l fish_manpath (dirname $__fish_datadir)/fish/man
	if test -d "$fish_manpath" -a -n "$MANPATH"
		set MANPATH "$fish_manpath":$MANPATH

		# Invoke man with this manpath, and we're done
		command man $argv
		return
	end
	
	# If fish's man pages could not be found, just invoke man normally
	command man $argv
end

Hry