File: file

package info (click to toggle)
debian-installer-utils 1.92%2Bdeb7u1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 880 kB
  • sloc: sh: 937; ansic: 115; makefile: 47
file content (10 lines) | stat: -rw-r--r-- 147 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
protocol_fetch() {
	local FILE="${1#file://*}"
	if [ ! -e "$FILE" ]; then
		return 4
	elif ! cp "$FILE" $2; then
		return 1
	else
		return 0
	fi
}