wok-undigest view libfirefox/stuff/list-common.sh @ rev 963

Marlin and friends :) Up libgee, vala. Finished marlin. Add dconf*, extended-actions, faenza-icon-theme-emblems, ffmpegthumbnailer*, granite*, tumbler*. GTK+3 stuff: gtk3-engine-unico, try leafpad for GTK+3.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Fri Mar 15 14:47:37 2013 +0000 (2013-03-15)
parents
children
line source
1 #!/bin/sh
2 #
3 # script to list mozilla common files
4 #
6 . /etc/slitaz/cook.conf
8 . $WOK/thunderbird/receipt
10 cd $WOK/$PACKAGE/install/usr/lib/$PACKAGE-$VERSION
11 for file in $(find $PWD -type f); do
12 file1="$file"
13 file2="$(echo "$file" | sed 's/thunderbird/firefox/g')"
14 diff $file1 $file2 >/dev/null 2>/dev/null
15 [ "$?" = "0" ] && ls -l "$file"
16 done
17 exit 0