diff options
author | jaseg <jaseg@jaseg.net> | 2014-01-03 13:19:44 +0100 |
---|---|---|
committer | jaseg <jaseg@jaseg.net> | 2014-01-03 13:19:44 +0100 |
commit | 9ef5c135e894b2da95940e2556f4df9ce2205552 (patch) | |
tree | 3e6538ec4ac69caa9f4db16dad36265fcf5637eb /host/resources/fonts/touch_id | |
parent | 3fd92ee838b39de097ce2b03ebdd37659708e157 (diff) | |
download | matelight-9ef5c135e894b2da95940e2556f4df9ce2205552.tar.gz matelight-9ef5c135e894b2da95940e2556f4df9ce2205552.tar.bz2 matelight-9ef5c135e894b2da95940e2556f4df9ce2205552.zip |
Re-organized the host software directory layout
Diffstat (limited to 'host/resources/fonts/touch_id')
-rwxr-xr-x | host/resources/fonts/touch_id | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/host/resources/fonts/touch_id b/host/resources/fonts/touch_id new file mode 100755 index 0000000..4dd793d --- /dev/null +++ b/host/resources/fonts/touch_id @@ -0,0 +1,10 @@ +#!/bin/bash +# +# usage: touch_id file1 file2 ... +# +# Changes RCS's version code $Id: ...$ into $Id:$ in the named +# files, such that subsequent "diff -u" patch files will always indicate +# clearly, against what old version the diff was made. This will avoid +# confusion about how to apply patch files. +# +perl -p -i -e 's/\$Id:.*\$/\$Id:\$/;' $* |