aboutsummaryrefslogtreecommitdiff
path: root/lang/modula-3/scripts/maybe-strip
diff options
context:
space:
mode:
Diffstat (limited to 'lang/modula-3/scripts/maybe-strip')
-rw-r--r--lang/modula-3/scripts/maybe-strip7
1 files changed, 7 insertions, 0 deletions
diff --git a/lang/modula-3/scripts/maybe-strip b/lang/modula-3/scripts/maybe-strip
new file mode 100644
index 000000000000..ef0b03f05592
--- /dev/null
+++ b/lang/modula-3/scripts/maybe-strip
@@ -0,0 +1,7 @@
+#! /bin/sh
+
+for i; do
+ if [ -f $i ]; then
+ strip $i
+ fi
+done