DEBSOURCES
Skip Quicknav
sources / swtpm / 0.10.1%2Bds-1 / tests / fileinstall
12345678
#!/usr/bin/env bash if [[ "$(uname -s)" =~ (Linux|CYGWIN_NT-) ]]; then install -D "$1" "$2" else mkdir -p "$(dirname "$2")" install "$1" "$2" fi