5 lines
120 B
Text
5 lines
120 B
Text
|
#!/bin/bash
|
||
|
|
||
|
find $HOME -type f -name '.gopath' | sed 's!/.gopath$!!' > /tmp/godirs
|
||
|
mv /tmp/godirs $HOME/.config/godirs
|