Skip to content

Instantly share code, notes, and snippets.

View ramchandev's full-sized avatar

Ramachandran S ramchandev

View GitHub Profile
@ramchandev
ramchandev / rename-files.sh
Last active September 14, 2018 06:09
Rename the files by finding the Pattern
for file in *.mp3; do
mv "$file" "${file// /-}"
#replace space with -
done

1. Clone your fork:

git clone [email protected]:YOUR-USERNAME/YOUR-FORKED-REPO.git

2. Add remote from original repository in your forked repository:

cd into/cloned/fork-repo
git remote add upstream git://github.com/ORIGINAL-DEV-USERNAME/REPO-YOU-FORKED-FROM.git
git fetch upstream
@ramchandev
ramchandev / README.md
Created August 20, 2018 06:05 — forked from hofmannsven/README.md
Storing WordPress files and database with WP-CLI on the server.