- Selbstaehnlichkeit -> Ein Verzeichnis enthaelt Dateien und andere Verzeichnisse
Iteration
Wiederholend
| https://github.com/search?utf8=%E2%9C%93&q=is%3Aopen+is%3Aissue+involves%3Atimofurrer&type=Issues&ref=searchresults |
| #!/bin/sh | |
| MODULES=' | |
| CNA:3264958 | |
| AD:3264934 | |
| FKOM:3265225 | |
| PMB:3265214 | |
| ' | |
| BASE_URL='https://elearning.hslu.ch/ilias/webdav.php/hslu' |
| # -*- coding: utf-8 -*- | |
| """ | |
| This module provides a script to document Radish step implementations | |
| """ | |
| from sys import exit | |
| from os.path import split |
| """ | |
| Find a name for the given characters | |
| """ | |
| import sys | |
| import csv | |
| import codecs | |
| import subprocess | |
| chars = set([ |
| # -*- coding: utf-8 -*- | |
| """ | |
| Parse compiled terminfo DB files | |
| python terminfo.py /usr/share/terminfo adm3a | |
| """ | |
| import os |
| # -*- coding: utf-8 -*- | |
| """ | |
| Parse compiled terminfo DB files | |
| python terminfo.py /usr/share/terminfo adm3a | |
| """ | |
| import os |
| #!/bin/bash | |
| set -e | |
| ENSURE_SSH=false | |
| while [ -n "$1" ]; do | |
| case "$1" in | |
| -i|--image) | |
| IMAGE="$2"; shift 2 |
| #[derive(Debug)] | |
| struct Attribute<'a> { | |
| name: &'a str, | |
| url: &'a str, | |
| } | |
| fn main() { | |
| let attributes = vec![ | |
| Attribute { | |
| name: "Batman", |
| """ | |
| This module implements a set of prioritized locks. | |
| Implemented: | |
| * PriorityLock | |
| * FIFOPriorityLock | |
| License: MIT <tuxtimo@gmail.com> | |
| """ |