File: method

package info (click to toggle)
partman 63
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 1,208 kB
  • ctags: 150
  • sloc: ansic: 1,877; sh: 1,399; makefile: 66
file content (41 lines) | stat: -rwxr-xr-x 561 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
#!/bin/sh

cd $1

num=$2
id=$3
size=$4
type=$5
fs=$6
path=$7
name=$8

if [ ! -f $id/method ]; then
    printf "  "
else
    if [ -f $id/format ]; then
	if [ -f $id/detected_filesystem ]; then
	    if [ "$TERM" = xterm -o "$TERM" = bterm ]; then
		printf " ☠"
	    else
		printf " F"
	    fi
	else
	    if [ "$TERM" = xterm -o "$TERM" = bterm ]; then
		printf " ☺"
	    else
		printf " f"
	    fi
	fi
    else
	if [ "$TERM" = xterm -o "$TERM" = bterm ]; then
	    printf " ☻"
	else
	    printf " K"
	fi
    fi
fi

# Local Variables:
# coding: utf-8
# End: