File: sanitize.sh

package info (click to toggle)
backup-manager 0.7.9-3
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 1,400 kB
  • ctags: 209
  • sloc: sh: 3,584; perl: 1,002; makefile: 210
file content (16 lines) | stat: -rwxr-xr-x 215 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#! /bin/bash

if [[ -z "$1" ]]; then
	echo "No file given"
	exit 1
fi

lib="/usr/share/backup-manager"

source $lib/gettext.sh
source $lib/dialog.sh
source $lib/logger.sh
source "$1"
source $lib/sanitize.sh

exit 0