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