I know you can do mkdir to create a directory and touch to create a file, but is there no way to do both operations in one go?
mkdir
touch
i.e. if I wa
you can do it in two steps:
mkdir -p /my/other/path/here/ touch /my/other/path/here/cpedthing.txt