mirror of
https://github.com/oDinZu/callirhoe.git
synced 2025-02-23 00:02:16 -05:00
11 lines
483 B
Plaintext
11 lines
483 B
Plaintext
|
#!/bin/bash
|
||
|
|
||
|
echo -n resource_list = { \"lang\" : [
|
||
|
find ./lang | grep '.py' | sed 's/\.\//"/' | sed 's/$/"/' | tr '\n' ',' | sed 's/.$/], /'
|
||
|
echo -n \"layouts\" : [
|
||
|
find ./layouts | grep '.py' | sed 's/\.\//"/' | sed 's/$/"/' | tr '\n' ',' | sed 's/.$/], /'
|
||
|
echo -n \"style\" : [
|
||
|
find ./style | grep '.py' | sed 's/\.\//"/' | sed 's/$/"/' | tr '\n' ',' | sed 's/.$/], /'
|
||
|
echo -n \"geom\" : [
|
||
|
find ./geom | grep '.py' | sed 's/\.\//"/' | sed 's/$/"/' | tr '\n' ',' | sed 's/.$/]}/'
|