Bash/Eclipse Workspace: Difference between revisions

From Chorke Wiki
Jump to navigation Jump to search
No edit summary
 
(2 intermediate revisions by the same user not shown)
Line 2: Line 2:
<syntaxhighlight lang="bash">
<syntaxhighlight lang="bash">
cd $CKI_WORKSPACES;\
cd $CKI_WORKSPACES;\
for w in *_workspace;do if [ -d "$w" ];then cd $w;\
for w in *_workspace;do if [ -d "$w" ];then cd $w;pwd;\
   rm -rf .metadata .recommenders *.rar *.zip RemoteSystemsTempFiles Servers;\
   rm -rf .metadata .recommenders *.rar *.zip RemoteSystemsTempFiles Servers;\
cd ..;fi;done
cd ..;fi;done
Line 22: Line 22:
   for m in src/main/cmd/*;do \
   for m in src/main/cmd/*;do \
     if [ -d "$m" ];then rm -rf $m;fi;\
     if [ -d "$m" ];then rm -rf $m;fi;\
     if [[ "$m" == */bootstrap.* ]];then \
     if [[ "$m" == */bootstrap.* ]];then rm -rf $m;fi;\
      rm -rf $m;\
    fi;\
   done;\
   done;\
cd ../..;fi;done
cd ../..;fi;done
Line 32: Line 30:
<syntaxhighlight lang="bash">
<syntaxhighlight lang="bash">
cd $CKI_WORKSPACES;\
cd $CKI_WORKSPACES;\
for w in *_workspace;do if [ -d "$w" ];then cd $w;\
for w in *_workspace;do if [ -d "$w" ];then cd $w;pwd;\
   for p in chorke-*;do if [ -d "$p" ];then \
   for p in chorke-*;do if [ -d "$p" ];then \
     zip -r $p.jar $p; rm -rf $p;\
     zip -r $p.jar $p; rm -rf $p;\

Latest revision as of 10:35, 17 September 2018

Workspace Metadata Clean

cd $CKI_WORKSPACES;\
for w in *_workspace;do if [ -d "$w" ];then cd $w;pwd;\
  rm -rf .metadata .recommenders *.rar *.zip RemoteSystemsTempFiles Servers;\
cd ..;fi;done

Project Metadata Clean

cd $CKI_WORKSPACES;\
for p in *_workspace/chorke-*;do if [ -d "$p" ];then cd $p;pwd;\
  rm -rf .classpath .project .settings .springBeans target;\
cd ../..;fi;done

Sencha Metadata Clean

cd $CKI_WORKSPACES;\
for p in *_workspace/chorke-*;do if [ -d "$p" ];then cd $p;pwd;\
  rm -rf src/main/cmd/.sencha;\
  for m in src/main/cmd/*;do \
    if [ -d "$m" ];then rm -rf $m;fi;\
    if [[ "$m" == */bootstrap.* ]];then rm -rf $m;fi;\
  done;\
cd ../..;fi;done

Archive Eclipse Projects

cd $CKI_WORKSPACES;\
for w in *_workspace;do if [ -d "$w" ];then cd $w;pwd;\
  for p in chorke-*;do if [ -d "$p" ];then \
    zip -r $p.jar $p; rm -rf $p;\
  fi;done;\
cd ..;fi;done