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