4 lines
119 B
Bash
Executable file
4 lines
119 B
Bash
Executable file
#!/bin/bash
|
|
|
|
find $HOME -type f -name '.gopath' | sed 's!/.gopath$!!' >/tmp/godirs
|
|
mv /tmp/godirs $HOME/.config/godirs
|