Skip to content
Snippets Groups Projects
Commit 3bddd666 authored by Kenneth Reitz's avatar Kenneth Reitz
Browse files

serious business

parent e00a407c
No related branches found
No related tags found
No related merge requests found
...@@ -33,3 +33,17 @@ function set-env (){ ...@@ -33,3 +33,17 @@ function set-env (){
function set-default-env (){ function set-default-env (){
echo "export $1=\${$1:-$2}" >> $PROFILE_PATH echo "export $1=\${$1:-$2}" >> $PROFILE_PATH
} }
# Does some serious copying.
function deep-cp (){
find -H $1 -maxdepth 1 -name '.*' -a \( -type d -o -type f -o -type l \) -exec cp -a '{}' $2 \;
echo copying $1 to $2
}
# Does some serious moving.
function deep-mv (){
deep-cp $1 $2
rm -fr $1/*
find -H $1 -maxdepth 1 -name '.*' -a \( -type d -o -type f -o -type l \) -exec rm -fr '{}' \;
}
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment