File: sanitize.sh

package info (click to toggle)
backup-manager 0.7.5-5
  • links: PTS
  • area: main
  • in suites: etch
  • size: 1,496 kB
  • ctags: 280
  • sloc: sh: 3,296; perl: 975; makefile: 210
file content (16 lines) | stat: -rwxr-xr-x 213 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