Skip to content

Commit 687aab8

Browse files
committed
Tools: Use bash instead of sh/zsh
1 parent 0ff56b2 commit 687aab8

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

tools/add_libconcept.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/sh
1+
#!/bin/bash
22

33
usage() {
44
cat <<EOF

tools/bs_to_tex.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/zsh
1+
#!/bin/bash
22

33
itemize=0
44
empty=0
@@ -31,7 +31,7 @@ sed -e 's,<pre>,\\begin{itemdecl},g' \
3131
-e 's,`\[\([^\,]\+\)\, *\([^`]\+\)]`,\\crange{\1}{\2},' \
3232
-e 's,`\([^`]\+\)`,\\tcode{\1},g' \
3333
$1 | while IFS='' read -r line; do
34-
if [[ "$line" =~ '^- ' ]]; then
34+
if [[ "$line" =~ ^- ]]; then
3535
if ((!itemize)); then
3636
itemize=1
3737
echo -E '\begin{itemize}'

0 commit comments

Comments
 (0)