6 lines
135 B
Bash
Executable File
6 lines
135 B
Bash
Executable File
#!/bin/sh
|
|
# Git filter to replace $USER with USERNAME.
|
|
# Assigned to cluster_info files in .gitattributes
|
|
sed -e "s/$USER/USERNAME/g"
|
|
|