cPanel, How to fix “cat: /dev/fd/63: No such file or directory” error
This appears when you run simple cd command via cPanel –> Terminal, for example:
cd public_html cat: /dev/fd/63: No such file or directory
The fix is pretty simple, just suppress output of cd command
Update .bashrc with the following alias:
alias cd='cd &>/dev/null' source .bashrc… Read the rest