1 2 3 4 5 6 7
#!/bin/sh set -e -u tf="$HOME/Library/Application Support/Steam/steamapps/common/Team Fortress 2/tf" for cfg in cfg/*.cfg; do ln -s -f "$PWD/$cfg" "$tf/$cfg" done