File: bootable

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 (25 lines) | stat: -rwxr-xr-x 262 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
#!/bin/sh

cd $1

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

if [ -f $id/bootable ]; then
    if [ "$TERM" = xterm -o "$TERM" = bterm ]; then
	printf " ↯"
    else
	printf " B"
    fi
else
    printf "  "
fi

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