how to switch from one user to another user in linux code example
Example: linux switch user
$ whoami
user1
$ su - user2
Password:
$ whoami
user2
$ exit
logout
$ whoami
user1
$ su - user2
Password:
$ whoami
user2
$ exit
logout