turing-pi-scripts
Miscellaneous scripts for my Turing Pi setup. Turn on and off all nodes with a command or power button and have a power LED.
File Explorer
- changelog
- compat
- control
- copyright
- install
- rules
- pinout.png
- turing-pi.jpg
- config.txt
- LICENSE
- listen-for-shutdown.py
- listen-for-shutdown.service
- nodes.cfg
- package.yml
- README.md
- turn-off-nodes.sh
- turn-on-nodes.service
- turn-on-nodes.sh
# Use via CDN
jsDelivrjsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.
Command Glossary
Commands referenced in this DOCs, explained below.
git clone
View Details ▼
git clone
Clone an existing repository.
git clone {{remote_repository_location}} {{path/to/directory}}
Clone an existing repository into a new directory (the default directory is the repository name):
git clone --recursive {{remote_repository_location}}
Clone an existing repository and its submodules:
git clone {{[-n|--no-checkout]}} {{remote_repository_location}}
Clone only the `.git` directory of an existing repository:
nano
View Details ▼
nano
Text editor. An enhanced `pico` clone.
See also: `pico`, `rnano`.
nano {{path/to/file1 path/to/file2 ...}}
Open specific files, moving to the next file after closing the previous one:
nano {{[-I|--ignorercfiles]}}
Start the editor without using configuration files:
nano +{{line}},{{column}} {{path/to/file}}
Open a file and position the cursor at a specific line and column:
