xref: /aosp_15_r20/external/crosvm/third_party/minijail/test/read_stdin (revision 4b9c6d91573e8b3a96609339b46361b5476dd0f9)
1#!/bin/bash
2
3# Copyright 2012 The ChromiumOS Authors
4# Use of this source code is governed by a BSD-style license that can be
5# found in the LICENSE file.
6
7read line
8
9if [ "$line" == "test" ]; then
10	exit 0
11else
12	exit 1
13fi
14