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
One example would be https://developer.signalwire.com/freeswitch/FreeSWITCH-Explained/Installation/Linux/Deprecated-Installation-Instructions/CentOS-7-and-RHEL-7-for-FreeSWITCH-Enterprise_27590673/#about, but any page that has a similar construct to this:
yum install -y https://$(< /etc/yum/vars/fsausername):$(< /etc/yum/vars/fsapassword)@fsa.freeswitch.com/repo/yum-stack/fsa/centos-release/signalwire-stack-release-repo-0-1.noarch.rpm epel-release
will not work, as password gets evaluated and ! makes bash go crazy.
(Any http://* style commands)
To work around this I used ~/.netrc file to specify credentials, this at least works for wget and git.
The text was updated successfully, but these errors were encountered:
https://github.com/signalwire/signalwire-docs/issues/619
Sorry, something went wrong.
No branches or pull requests
One example would be https://developer.signalwire.com/freeswitch/FreeSWITCH-Explained/Installation/Linux/Deprecated-Installation-Instructions/CentOS-7-and-RHEL-7-for-FreeSWITCH-Enterprise_27590673/#about, but any page that has a similar construct to this:
yum install -y https://$(< /etc/yum/vars/fsausername):$(< /etc/yum/vars/fsapassword)@fsa.freeswitch.com/repo/yum-stack/fsa/centos-release/signalwire-stack-release-repo-0-1.noarch.rpm epel-release
will not work, as password gets evaluated and ! makes bash go crazy.
(Any http://* style commands)
To work around this I used ~/.netrc file to specify credentials, this at least works for wget and git.
The text was updated successfully, but these errors were encountered: