This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /bin/sh | |
clear | |
count=0 | |
for i in * | |
do | |
if [ -d "$i" ] | |
then | |
cd "$i" | |
if [ -d ".git" ] | |
then |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /bin/bash | |
##################################################################################################### | |
# == wpmd 2 grav == # | |
# This script converts the headers from wp2md to Grav headers format # | |
# wp2md : https://github.com/dreikanter/wp2md ; with `wp2md -d ./ export.xml -ps {title}/item.md` # | |
# Grav : http://getgrav.org/ # | |
# @author : Tom Canac http://tomcanac.com/ # | |
# @version : 0.1 # | |
# @licence : CC-BY # |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /bin/sh | |
##################################################################################################### | |
# == Thumbs_db_killer == # | |
# This script delete all the Thumbs.db files on the curent folder, and on the sub-folders. # | |
# You can modify the $ennemy variable if you want to bulk-delete an other file (.Sync, of whatever).# | |
# @author : Tom Canac http://tomcanac.com/ # | |
# @version : 1.0 # | |
# @licence : CC-BY # | |
##################################################################################################### |