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
if [ ! -d /my/other ] then mkdir /my/other/path/here cp /my/long/path/here/thing.txt /my/other/path/here/cpedthing.txt fi