lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 23.11-beta 17 lines 223 B view raw
1#! @shell@ 2 3declare -a args=() 4 5token=$1 6shift 7 8while (( $# )); do 9 if [[ "$1" = "$token" ]]; then 10 mapfile -t -O $(("${#args[@]}" + 1)) args 11 else 12 args+=("$1") 13 fi 14 shift 15done 16 17exec "${args[@]}"