-
Notifications
You must be signed in to change notification settings - Fork 822
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
zsh: permission denied: help #3833
Comments
Hi @zenis0102 , If you want some help info for different commands I would recommend typing in the commands like this: Edit: As @therealkenc noted below, export is a shell command and so this command will not always work as expected for every shell. However it does show some help information for bash shell. Thank you @therealkenc ! :) And if you'd like to view some more detailed pages you can always view the manual pages of some applications with Does that help answer your question? |
The
Which has the fun repro:
Which is probably dupe #2779, though that's as far as the motivational curiosity took me. |
thank you both @mscraigloewen and @therealkenc for any recommendation. First of all, I'm sorry that I made a small but misleading mistake here:
actually I have edited as to
which @therealkenc clarified it too there is no here is the result in $ export --help
export: bad option: -e and I don't know where the $ export --help
/usr/share/fish/functions/export.fish (line 9): $- is not a valid variable in fish.
set -gx $v $$v
^
in function 'export'
called on standard input
with parameter list '--help' and finally for the good old $ export --help
export: export [-fn] [name[=value] ...] or export -p
Set export attribute for shell variables.
Marks each NAME for automatic export to the environment of subsequently
executed commands. If VALUE is supplied, assign VALUE before exporting.
Options:
-f refer to shell functions
-n remove the export property from each NAME
-p display a list of all exported variables and functions
An argument of `--' disables further option processing.
Exit Status:
Returns success unless an invalid option is given or NAME is invalid. or $ help export
export: export [-fn] [name[=value] ...] or export -p
Set export attribute for shell variables.
Marks each NAME for automatic export to the environment of subsequently
executed commands. If VALUE is supplied, assign VALUE before exporting.
Options:
-f refer to shell functions
-n remove the export property from each NAME
-p display a list of all exported variables and functions
An argument of `--' disables further option processing.
Exit Status:
Returns success unless an invalid option is given or NAME is invalid. and either of two latter ones were the very info I was expecting for thanks again for the good replies. [EDIT]
|
Export is a builtin in
You passed argument Contrast " [But not |
I just overlooked that part of |
This is not working. |
I have installed Ubuntu-18.04 as for WSL on a x64 based Windows 10 and typing all following commands in bash gives me
zsh: permission denied: help
help
zsh: permission denied: help
help export
zsh: permission denied: help
help sed
zsh: permission denied: help
I'm new to Linux system and just trying to get some help info about
export
command as I found out that it is abuiltins
command so there is no man page for it in my system.I'll appreciate any help.
The text was updated successfully, but these errors were encountered: