summaryrefslogtreecommitdiff
path: root/release_23/test/Scripts/not
diff options
context:
space:
mode:
Diffstat (limited to 'release_23/test/Scripts/not')
-rwxr-xr-xrelease_23/test/Scripts/not12
1 files changed, 0 insertions, 12 deletions
diff --git a/release_23/test/Scripts/not b/release_23/test/Scripts/not
deleted file mode 100755
index e3b1efe35c8d..000000000000
--- a/release_23/test/Scripts/not
+++ /dev/null
@@ -1,12 +0,0 @@
-#!/bin/sh
-#
-# Program: not
-#
-# Synopsis: Inverse the output of the program specified on the command line
-#
-# Syntax: not command <arguments>
-
-if "$@"
-then exit 1
-else exit 0
-fi