mirror of
https://github.com/arcan1s/awesome-widgets.git
synced 2025-04-24 23:47:20 +00:00
16 lines
686 B
Bash
Executable File
16 lines
686 B
Bash
Executable File
#!/bin/sh
|
|
|
|
WDIR=`pwd` # working dir
|
|
SATELLITE_LIST=satellite.list
|
|
BACKGROUND_LIST=background.list
|
|
|
|
# Background list
|
|
cd "$WDIR"
|
|
cd ../images
|
|
ls -1 background_* | sed -e "s/background_//g" | sed -e "s/_/ /g" | sed -e "s/\.jpg//g" | sed -e "s/\.png//g" | sed -e "s/\.gif//g" | grep -v '^$' | sort --unique --ignore-leading-blanks > "$WDIR/background.list"
|
|
|
|
# Satellite list
|
|
cd "$WDIR"
|
|
cd ../data
|
|
cat satellite_images.xml | grep image\ name | sed -e "s/.*<image name=\"\([^\"]*\).*/\1/" | sed -e "s/\&/\&/g" | sed -e "s/\'/'/g" | sed -e "s/\"/\"/g" | sed -e "s/\</</g" | sed -e "s/\>/>/g" | grep -v '^$' | sort --unique --ignore-leading-blanks > "$WDIR/satellite.list"
|