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

test

parent 972e6f80
No related branches found
No related tags found
No related merge requests found
shopt -s extglob
# Syntax sugar. # Syntax sugar.
indent() { indent() {
RE="s/^/ /" RE="s/^/ /"
...@@ -37,7 +39,7 @@ function set-default-env (){ ...@@ -37,7 +39,7 @@ function set-default-env (){
# Does some serious copying. # Does some serious copying.
function deep-cp (){ function deep-cp (){
find -H $1 -maxdepth 1 -name '.*' -a \( -type d -o -type f -o -type l \) -exec cp -a '{}' $2 \; find -H $1 -maxdepth 1 -name '.*' -a \( -type d -o -type f -o -type l \) -exec cp -a '{}' $2 \;
cp -r $1/* $2 cp -r $1/!(tmp) $2
echo copying $1 to $2 echo copying $1 to $2
} }
...@@ -45,6 +47,6 @@ function deep-cp (){ ...@@ -45,6 +47,6 @@ function deep-cp (){
function deep-mv (){ function deep-mv (){
deep-cp $1 $2 deep-cp $1 $2
rm -fr $1/* rm -fr $1/!(tmp)
find -H $1 -maxdepth 1 -name '.*' -a \( -type d -o -type f -o -type l \) -exec rm -fr '{}' \; 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