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