Have you ever tried to copy some file(s) or directory(ies) to a destination that doesn't exist yet ? It's possible with a smart bash function !
HOW ?
How to obtain that ?
Using this bash script function :
cpd(){
mkdir -p "$(dirname ${@: -1})"
cp -r $@
}
- First, we create recursively the destination folder by getting the dir name of the last argument passed to the function.
- And we copy recursively depending on the array of arguments passed to the function.
As the final step, You just have to add it in your .bashrc
, source ~/.bashrc
and you're good to go !
DEMO ?
Thanks for reading, feel free to like and/or subscribe for more ðž.
Top comments (0)