We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Everything works from the terminal, but not when running a scrip.
My script:
#!/bin/bash/ fancygit --theme-human fancygit --disable-time fancygit --disable-full-path fancygit --enable-double-line
Output: script.sh: line 23: fancygit: command not found
script.sh: line 23: fancygit: command not found
The text was updated successfully, but these errors were encountered:
I suppose you are running the script by: ./<your_file>.sh or bash ./<your_file>.sh
./<your_file>.sh
bash ./<your_file>.sh
Instead, try running the script by sourcing: . ./<your_file>.sh or source ./<your_file>.sh
. ./<your_file>.sh
source ./<your_file>.sh
Did it work? 😄
Sorry, something went wrong.
No branches or pull requests
Everything works from the terminal, but not when running a scrip.
My script:
#!/bin/bash/ fancygit --theme-human fancygit --disable-time fancygit --disable-full-path fancygit --enable-double-line
Output:
script.sh: line 23: fancygit: command not found
The text was updated successfully, but these errors were encountered: