blob: b71a40bda75a6b8fbcc5140ca7dcf3692c8dad1c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
#!/bin/sh
# $KTH: copy-file,v 1.1 2000/10/14 04:01:52 lha Exp $
cat > foo <<EOF
hej love
ska vi g|ra r{tt nu.
EOF
cp foo foo2 || exit 1
cp foo foo2 || exit 1
cp foo foo2 || exit 1
cp foo foo2 || exit 1
cp foo foo2 || exit 1
cp foo foo2 || exit 1
cp foo foo2 || exit 1
cp foo foo2 || exit 1
cp foo foo2 || exit 1
cp foo foo2 || exit 1
cp foo foo2 || exit 1
cp foo foo2 || exit 1
cp foo foo2 || exit 1
cp foo foo2 || exit 1
cp foo foo2 || exit 1
cp foo foo2 || exit 1
cp foo foo2 || exit 1
exit 0
|