Suppose my current directory is A. I want to create a directory B and a file \"myfile.txt\" inside B.
How to do th
Just a simple command below is enough.
mkdir a && touch !$/file.txt
Thx