Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(49)

Side by Side Diff: third_party/xdg-utils/tests/include/system_info

Issue 151098: Patch from mdm@google.com... (Closed) Base URL: svn://chrome-svn/chrome/trunk/deps/
Patch Set: Created 11 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
Property Changes:
Name: svn:executable
+ *
OLDNEW
(Empty)
1 #!/bin/bash
2
3 parentdir=${0%/*}
4 which perl >/dev/null 2>&1
5 if [ "$?" ] ; then
6 distro=`perl $parentdir/linux_distro 2>&1`
7 else
8 distro="not available (couldn't find perl)"
9 fi
10
11 echo "distribution: $distro"
12
13 echo "xdg-utils:" `xdg-mime --version | cut -d ' ' -f 2`
14
15 . "$parentdir/desktop_environment"
16
17 detail=`uname -a`
18 echo "uname: $detail"
19
20 echo "xset data:"
21 echo "-------------------------------------"
22 xset q
23 echo "-------------------------------------"
OLDNEW
« no previous file with comments | « third_party/xdg-utils/tests/include/listargs ('k') | third_party/xdg-utils/tests/include/tempfile.sh » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698