-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathclean.sh
More file actions
executable file
·31 lines (31 loc) · 1.84 KB
/
clean.sh
File metadata and controls
executable file
·31 lines (31 loc) · 1.84 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#!/bin/sh
###############################################################################
# #
# Copyright 2015. Los Alamos National Security, LLC. This material was #
# produced under U.S. Government contract DE-AC52-06NA25396 for Los Alamos #
# National Laboratory (LANL), which is operated by Los Alamos National #
# Security, LLC for the U.S. Department of Energy. The U.S. Government has #
# rights to use, reproduce, and distribute this software. NEITHER THE #
# GOVERNMENT NOR LOS ALAMOS NATIONAL SECURITY, LLC MAKES ANY WARRANTY, #
# EXPRESS OR IMPLIED, OR ASSUMES ANY LIABILITY FOR THE USE OF THIS SOFTWARE. #
# If software is modified to produce derivative works, such modified software #
# should be clearly marked, so as not to confuse it with the version #
# available from LANL. #
# #
# Additionally, this program is free software; you can redistribute it and/or #
# modify it under the terms of the GNU General Public License as published by #
# the Free Software Foundation; either version 2 of the License, or (at your #
# option) any later version. Accordingly, this program is distributed in the #
# hope that it will be useful, but WITHOUT ANY WARRANTY; without even the #
# implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. #
# See the GNU General Public License for more details. #
# #
###############################################################################
rm *.gz
rm *.dmg
rm *.log
rm *.old
rm *.xml
find . -iname "*.pyc" -print -exec rm {} \;
rm -rf build
rm -rf dist