Skip to content
Snippets Groups Projects
Select Git revision
  • 515ae69e5c5ce478c37502a3bb55c96012cee7c3
  • master default protected
  • compilation2022apr
  • ISEI_3_5_1
  • VERSION_3_9-alba
  • VERSION_3_9-Indus2
  • Jianfeng
  • VERSION-3_10
  • VERSION-3_9_1
  • VERSION-3_9_alba
  • VERSION-3_9_Indus2
  • VERSION-3_9
  • VERSION-3_8
  • VERSION-3_7
  • ISEI_3_5_1-PATCH_2
  • ISEI_3_5_1-PATCH_1
  • PROD_3_5_1
  • VERSION_3_6prerelease2
  • VERSION_3_6prerelease
  • VERSION-3_5
  • tracy
21 results

set_var.sh

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    back_up_tracy-3.5.sh 353 B
    #!/bin/sh
    
    time=`date --iso-8601`
    
    dir=`pwd`
    
    tracy="tracy-3.5"
    
    # set home directory
    cd "$dir/$tracy"
    
    # clean up directory
    make distclean
    
    rm -rf autom4te.cache
    rm -rf aclocal.m4
    rm -rf bin/*
    rm -rf tracy/bin/*
    
    cd $dir
    
    fname="back_up_$tracy.$time.tgz"
    cmd_str="tar -czf $fname "back_up_$tracy.sh" "make_$tracy.sh" $tracy"
    echo "$cmd_str"
    `$cmd_str`