I\'m searching for just one command — nothing with && or | — that creates a directory and then immediately cha
&&
|
You did not say if you want to name the directory yourself.
cd `mktemp -d`
Will create a temp directory and change into it.