sqlcmd not available after installing mssql-tools
Quoting the page you linked to:
Optional Step: Create symlinks to 'SQLCMD' and 'BCP' under /usr/bin/.
ln -sfn /opt/mssql-tools/bin/sqlcmd-13.0.1.0 /usr/bin/sqlcmd ln -sfn /opt/mssql-tools/bin/bcp-13.0.1.0 /usr/bin/bcp
Add the path either to ~/.bash_profile or ~/.profile if you don't have .bash_profile in your home directory.
export PATH="$PATH:/opt/mssql-tools/bin"
Add the following path to your ~/.bashrc file
export PATH="$PATH:/opt/mssql-tools/bin"
Don't forget to update the path configuration by issuing the following command in your terminal window:
source ~/.bashrc