Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at master 16 lines 240 B view raw
1#! @shell@ 2# shellcheck shell=bash 3 4args=() 5for p in "$@"; do 6 case "$p" in 7 -t) 8 # Skip, LLVM ranlib doesn't support 9 ;; 10 *) 11 args+=("$p") 12 ;; 13 esac 14done 15 16@prog@ "${args[@]}"