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
# --------------------------------------------------------------------------- | |
# | |
# Description: This file holds all my BASH configurations and aliases | |
# | |
# Sections: | |
# 1. Environment Configuration | |
# 2. Make Terminal Better (remapping defaults and adding functionality) | |
# 3. File and Folder Management | |
# 4. Searching | |
# 5. Process Management |
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 | |
# Copy MP3 files in a directory to a new name based solely on creation date | |
# FROM: foo.mp3 Created on: 2012-04-18 18:51:44 | |
# TO: 20120418_185144.mp3 | |
for i in *.mp3 | |
do | |
# mod_date=$(stat -c "%y" "$i"|sed 's/\..*$//') | |
# mod_date=$(stat -c "%y" "$i"|awk '{print $1"_"$2}'|sed 's/\..*$//') | |
mod_date=$(stat --format %y "$i"|awk '{print $1"_"$2}'|cut -f1 -d'.'|sed 's/[: -]//g') | |
cp "$i" "$mod_date".mp3 |
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
# | |
# Rename Screenshots, Make Thumbnails, Optimize Images with Imageoptim | |
# | |
clear; | |
echo -e '\n- - - - - - - - - - - - - - - - -'; | |
echo -e '\n Screenshotter V.1.0 '; | |
echo -e '\n- - - - - - - - - - - - - - - - -'; | |
# Wenn Variablen gesetzt sind, dann bitte los... |
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
for file in *; do mv $file `basename $file `.md; done |
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
# This script fetches WordPress plus some plugins with Wget, | |
# extracts everything, removes clutter and moves plugins into | |
# the right places. | |
# | |
# Option -e prints escape sequences like breaks \n | |
# | |
reset='\x1B[0m' | |
green='\x1b[0;32m' | |
yellow='\x1b[0;33m' |
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
# Rename file and replace OLDTEXT with NEWTEXT | |
# for filename in *.jpg; do mv "$filename" "${filename//OLDTEXT/NEWTEXT}"; done | |
# replace large with nothing | |
for filename in *.jpg; do mv "$filename" "${filename//large/}"; done | |
for filename in *.xml; do mv "$filename" "${filename//_meta.xml/.md}"; done |
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
# | |
# Rename multiple files and replace name with number and prefix | |
# %02 › digits of numbers (increase when lots of files) | |
# | |
# counter=1 | |
# for i in *.* | |
# do new=$(printf "%02d.jpg" "$counter") | |
# mv -- "$i" "screenshot-realaudio-$new" | |
# let counter=counter+1 | |
# done |
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
# | |
# 1. Download file › batch_download.sh | |
# 2. Edit file › URLs for wget to download | |
# 3. With -O you can rename the output file | |
# 4. Change permissions of file $ chmod 755 batch_download.sh | |
# 5. Start the batch $ ./batch_download.sh | |
# | |
wget https://archive.org/compress/kpu008 -O kpu008.zip | |
wget https://archive.org/compress/kpu009 -O kpu009.zip |
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
/* | |
There's a better tool https://interconnectit.com/products/search-and-replace-for-wordpress-databases/ | |
MySQL Queries When Moving WordPress | |
To use this snippet, you have to: | |
1. Change the table prefix according your installation. In the example it's: wp_ | |
2. Change http://old-domain.com to your old domain. |
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
{% comment %} | |
# | |
# Loop through all pages of all collections | |
# | |
{% endcomment %} | |
{% for c in site.collections %} | |
{% assign docs=c[1].docs %} | |
{% for doc in docs %} | |
// do something | |
{% endfor %} |