summaryrefslogtreecommitdiff
path: root/other/day2/make.sh
blob: 9b21833f4565b3dfcf158368f7fba5a38ec4e6b0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/bash

for i in $(ls | grep .ms); do 
	groff -ms $i -e -Tps > $(echo $i | cut -f1 -d".").ps
	ps2pdf $(echo $i | cut -f1 -d".").ps 
done

if [ "$(tty)" = "/dev/tty1" ]; then 
	ps2ascii workexperience.ps 2> /dev/null | less -N
else
	zathura workexperience.pdf &
fi