blob: a00f1c017d91a8e437bdb264dafcda57a4930fd2 (
plain) (
blame)
1
2
3
4
5
6
7
|
#!/usr/bin/env zsh
set -o errexit -o nounset
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
|