3 lines
114 B
Shell
Executable file
3 lines
114 B
Shell
Executable file
#!/bin/bash
|
|
|
|
find src/ web/ -type l | while read link; do echo "$link,$(readlink "$link")"; done > conf/links.csv
|