Code & Deploy
Code
Models
Repos
Sign in
@matheusbsbs
/
matheus-bagliano
matheus-bagliano
/
gitweb
/
generate-gitweb-js.sh
Code
Commits
Pulls
CI/CD
81,841
master
bisect
jch
maint
master
next
seen
test
todo
sh
12 lines
128 Bytes
Copy permalink
Copy
Raw
1
#!/bin/sh
2
3
if
test
"$#"
-lt
2
4
then
5
echo
>
&2
"USAGE:
$0
<OUTPUT> <INPUT>..."
6
exit
1
7
fi
8
9
OUTPUT
=
"
$1
"
10
shift
11
12
cat
"
$@
"
>
"
$OUTPUT
"