November 2018
Intermediate to advanced
528 pages
13h 21m
English
We kick off by rebranding the Bitcoin project as Readercoin by renaming the bitcoin filenames to readercoin using the following commands:
find . -exec rename 's/bitcoin/readercoin/' {} ";"find . -exec rename 's/btc/rdc/' {} ";"
These Linux commands will rename every file that has bitcoin or btc in the name, recursing into subdirectories as needed.
As changing filenames will affect source files and make files, breaking paths and include statements, we need to replace all the occurrences of the old Bitcoin name and its abbreviation as BTC recursively in the code with the new name Readercoin and the acronym RDC. To be sure of replacing ...
Read now
Unlock full access