For example:
https://docs.chain.link/docs/running-a-chainlink-node/#create-an-environment-file
When you copy paste the text from:
echo \"ROOT=/chainlink
LOG_LEVEL=debug
ETH_CHAIN_ID=1
CHAINLINK_TLS_PORT=0
SECURE_COOKIES=false
GAS_UPDATER_ENABLED=true
ALLOW_ORIGINS=*\" > ~/.chainlink/.env
and paste that into your shell, it will execute each line independently.
It should be:
echo "ROOT=/chainlink
LOG_LEVEL=debug
ETH_CHAIN_ID=1
CHAINLINK_TLS_PORT=0
SECURE_COOKIES=false
GAS_UPDATER_ENABLED=true
ALLOW_ORIGINS=*" > ~/.chainlink/.env
We need to get rid of the escape character
For example:
When you copy paste the text from:
and paste that into your shell, it will execute each line independently.
It should be:
We need to get rid of the escape character