Welcome to mirror list, hosted at ThFree Co, Russian Federation.

stderr_script.sh « testdata « command « internal - gitlab.com/gitlab-org/gitaly.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 807d9860eb677ca919667e5265da4cc29d163801 (plain)
1
2
3
4
5
6
7
#!/bin/bash

for i in {1..5}
do
    echo 'hello world' 1>&2
done
exit 1