mirror of
git://soft.sys114.com/mainsail
synced 2026-02-04 14:20:36 +09:00
14 lines
281 B
Bash
Executable File
14 lines
281 B
Bash
Executable File
#!/bin/sh
|
|
|
|
ROOT_PATH=/usr/lib/mainsail
|
|
|
|
files=$(find \( -name . -o \
|
|
-name .git -prune -o \
|
|
-name .github -prune -o \
|
|
-name .gitignore -prune -o \
|
|
-name debian -prune \) -o -print | sed -e 's/^\.\///')
|
|
|
|
for f in ${files}; do
|
|
echo "${f} ${ROOT_PATH}/$(dirname ${f})"
|
|
done
|