summaryrefslogtreecommitdiff
path: root/rvs/plugins/filecontent/etc
diff options
context:
space:
mode:
Diffstat (limited to 'rvs/plugins/filecontent/etc')
-rw-r--r--rvs/plugins/filecontent/etc/3-d.sh3
-rw-r--r--rvs/plugins/filecontent/etc/5-f.sh3
2 files changed, 6 insertions, 0 deletions
diff --git a/rvs/plugins/filecontent/etc/3-d.sh b/rvs/plugins/filecontent/etc/3-d.sh
new file mode 100644
index 0000000..f169cae
--- /dev/null
+++ b/rvs/plugins/filecontent/etc/3-d.sh
@@ -0,0 +1,3 @@
+#!/bin/sh
+if [ -d "$1" ]; then echo 'd'; fi
+
diff --git a/rvs/plugins/filecontent/etc/5-f.sh b/rvs/plugins/filecontent/etc/5-f.sh
new file mode 100644
index 0000000..0506894
--- /dev/null
+++ b/rvs/plugins/filecontent/etc/5-f.sh
@@ -0,0 +1,3 @@
+#!/bin/sh
+if [ -f "$1" ]; then echo 'f'; fi
+