Spaces instead of tabs

This commit is contained in:
zvon 2019-01-04 20:19:08 +01:00
parent c014a059b6
commit 1bbddc5de9
5 changed files with 176 additions and 171 deletions

View File

@ -2,8 +2,13 @@ CC ?= clang
CXX ?= clang++
CFLAGS ?= -O2 -g -Wall -Wextra -std=c++11
.PHONY: default
default: tv_rename
.PHONY: clean
clean:
rm -f *.o tv_rename
tv_rename: functions.o filesystem.o tv_rename.cpp
$(CXX) $(CFLAGS) -o tv_rename tv_rename.cpp functions.o filesystem.o -lcurl

View File

@ -103,12 +103,12 @@ void printHelp() {
std::cout << "\t\t\tquotation marks and seperate by one space)" << std::endl;
std::cout << "\t\t\tor 'all' for all seasons in selected subdirectory" << std::endl;
std::cout << " --correct-path, -c\tThis is the correct path, stop asking me!" << std::endl;
std::cout << " --show-path show path, -sp show path" << std::endl;
std::cout << " --show-path show path, -p show path" << std::endl;
std::cout << "\t\t\tPath of the directory with episodes" << std::endl;
std::cout << " --trust, -t\t\tDon't ask whether the names are correct" << std::endl;
std::cout << " --linux, -x\t\tDon't replace characters characters that are illegal in Windows" << std::endl;
std::cout << " --lang language, -l language" << std::endl;
std::cout << "\t\t\tSelect which language the episode names shoud be in" << std::endl;
std::cout << " --print-langs, -p\tPring available language" << std::endl;
std::cout << " --print-langs\t\tPring available language" << std::endl;
}