https://github.com/TellinaTool/nl2bash
Raw File
Tip revision: e161623bbfbf54b195224fe1fdcb8a2397cc3320 authored by Victoria Lin on 13 September 2017, 16:54:22 UTC
remove unused man-page data files
Tip revision: e161623
Makefile
# This Makefile wraps commands used to set up the learning environment.

setup:
	# Set PYTHONPATH 
	export PYTHONPATH=`pwd`
	# Set up data files used in the learning module
	tar xf data/bash/vocab.tar.xz --directory data/bash/
	tar xf data/bash.final/vocab.tar.xz --directory data/bash.final/
	# Set up nlp tools
	tar xf nlp_tools/spellcheck/most_common.tar.xz --directory nlp_tools/spellcheck/
back to top