From d73fd7fda88748a4fa4472ffeac927ed631806c1 Mon Sep 17 00:00:00 2001 From: Charles Butler Date: Sun, 15 Jul 2012 17:03:49 -0400 Subject: [PATCH] utilty script to copy a skeleton lighttpd.conf script to CWD for webrick style insta-server --- scripts/php_project | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100755 scripts/php_project diff --git a/scripts/php_project b/scripts/php_project new file mode 100755 index 0000000..5a7f670 --- /dev/null +++ b/scripts/php_project @@ -0,0 +1,7 @@ +#!/bin/bash + +if [ -f ~/repository/dotfiles/scripts/skel/lighttpd.conf.skel ] +then + echo copying lighthttpd.conf to current directory + cp ~/repository/dotfiles/scripts/skel/lighttpd.conf.skel ./lighttpd.conf +fi