Add tsp/scripts/free_diskspace.sh 20/69720/12
authorAleksander Mistewicz <a.mistewicz@samsung.com>
Fri, 6 May 2016 09:22:49 +0000 (11:22 +0200)
committerAleksander Mistewicz <a.mistewicz@samsung.com>
Thu, 23 Jun 2016 15:05:14 +0000 (17:05 +0200)
Change-Id: Iae5463f09e9c20d118c456ee4c7b85fc6ae1da86
Signed-off-by: Aleksander Mistewicz <a.mistewicz@samsung.com>
tsp/scripts/free_diskspace.sh [new file with mode: 0755]

diff --git a/tsp/scripts/free_diskspace.sh b/tsp/scripts/free_diskspace.sh
new file mode 100755 (executable)
index 0000000..88ff2ed
--- /dev/null
@@ -0,0 +1,24 @@
+#!/bin/sh
+
+# Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+#     http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+# Author: Aleksander Mistewicz <a.mistewicz@samsung.com>
+
+# Assume that most of the space is taken up by downloaded images.
+# Delete ones that were modified at least 3 days ago.
+for i in $(find "${HOME}/ws/dwn" -type d -mtime +2)
+do
+    rm -vr "$i"
+done