Sha256: 921a2e1209be0b7c3409c6878b17622b7b5c601a3fbd96547b10eade439fe697

Contents?: true

Size: 117 Bytes

Versions: 11

Compression:

Stored size: 117 Bytes

Contents

#!/bin/bash

for i in ./*.tex
do
	cp "$i" "$i.bak1"
	cat "$i" | sed -f tidy_quotes > "$i.tmp"
	mv "$i.tmp" "$i"
done

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
prophecy-0.2.7 lib/prophecy/generators/book/helpers/tidy_quotes.sh
prophecy-0.2.6 lib/prophecy/generators/book/helpers/tidy_quotes.sh
prophecy-0.2.5 lib/prophecy/generators/book/helpers/tidy_quotes.sh
prophecy-0.2.4 lib/prophecy/assets/helpers/tidy_quotes.sh
prophecy-0.2.3 lib/prophecy/assets/helpers/tidy_quotes.sh
prophecy-0.2.2 lib/prophecy/assets/helpers/tidy_quotes.sh
prophecy-0.2.1 lib/prophecy/assets/helpers/tidy_quotes.sh
prophecy-0.2.0 lib/prophecy/assets/helpers/tidy_quotes.sh
prophecy-0.1.3 lib/prophecy/assets/helpers/tidy_quotes.sh
prophecy-0.1.2 lib/prophecy/assets/helpers/tidy_quotes.sh
prophecy-0.0.1 lib/prophecy/assets/helpers/tidy_quotes.sh