Skip to content

Instantly share code, notes, and snippets.

@ryu1kn
ryu1kn / mp4-download.sh
Last active January 3, 2018 09:55
mp4 downloader
#!/bin/bash
# Download MP4 files. Run the command with --help option to see more details
COMMAND_NAME=./mp4-download.sh
LOGFILE=download.log
FILENAME=""
ARGV_BASE_INDEX=1
ARGV_DEBUG=NO
ARGV__=()
@ryu1kn
ryu1kn / Makefile
Created November 1, 2017 10:29
Script to merge one repository into another
# Merge SRC_REPO into a DEST_REPO under its subdirectory NEW_DIR
# cf. https://stackoverflow.com/questions/277029/combining-multiple-git-repositories
#
# Place 2 repository and this Makefile as follows:
#
# ./
# DEST_REPO/
# Makefile
#
# Then execute