@@ -1,22 +0,0 @@
-#!/bin/sh
-
-# ////////////////////////////////////////////////////////////
-#
-# line10.sh
-# A shell script that modifies all .otf and .ttf fonts in the
-# working directory to 10% UPM line spacing
-# Copyright 2016 Christopher Simpkins
-# MIT License
-# Check for font-line application
-which font-line
-# if not present install it
-if [[ $? -ne 0 ]]; then
- pip install font-line
-fi
-# modify all .ttf and .otf files with 10% UPM line spacing
-font-line percent 10 *.ttf *.otf
-# line15.sh
-# working directory to 15% UPM line spacing
-# modify all .ttf and .otf files with 15% UPM line spacing
-font-line percent 15 *.ttf *.otf
-# line20.sh
-# working directory to 20% UPM line spacing
-# modify all .ttf and .otf files with 20% UPM line spacing
-font-line percent 20 *.ttf *.otf
-# line25.sh
-# working directory to 25% UPM line spacing
-# modify all .ttf and .otf files with 25% UPM line spacing
-font-line percent 25 *.ttf *.otf
-# line30.sh
-# working directory to 30% UPM line spacing
-# modify all .ttf and .otf files with 30% UPM line spacing
-font-line percent 30 *.ttf *.otf