Nice edit script to copy to /usr/local/bin Aug 2, 2010 21:30:33 GMT -5 Select PostDeselect PostLink to PostMemberGive GiftBack to Top Post by ZF on Aug 2, 2010 21:30:33 GMT -5 #!/bin/bashif (( $# < 1 )); then echo "Usage: edit filename(s)" exit 1fifor i in "$@"; do cp -p $i $i.$(date +%y%m%d%H%M%S) gedit $idone