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

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

printf 'a%.0s' {1..8192} >&2
printf '\n' >&2
printf 'b%.0s' {1..8192} >&2
exit 1;