I use ganache-cli to build local blockchain and truffle to deploy contract. To interact with deployed contracts i use truffle console. For example i transfer tokens from my current account(that is web3.eth.personal.getAccounts()[0]) to web3.eth.personal.getAccounts()[1] after this i want to change my current account to web3.eth.personal.getAccounts()[1] address.
How to do that?