Site Tools


Hotfix release available: 2025-05-14b "Librarian". upgrade now! [56.2] (what's this?)
Hotfix release available: 2025-05-14a "Librarian". upgrade now! [56.1] (what's this?)
New release available: 2025-05-14 "Librarian". upgrade now! [56] (what's this?)
prog:shell

Luku kasutamine croni skriptis

#!/bin/bash

cd /opt/ipdbd

if [ -f crontask.lock ] ; then
    exit 0
fi

touch crontask.lock

python2.4 crontask.py >> crontask.log

rm -f crontask.lock

Scripti parameetrite kasutamine ja kontrollimine

#!/bin/bash

if [ -z "$1" ]; then
    echo "Please add device_id as first parameter! This is NOT the hardware serial!";
    exit 0;
fi

if [ -z "$2" ]; then
    echo "Please add date of interest as second parameter!";
    exit 0;
fi

echo "$2" > /tmp/$1
chmod 666 /tmp/$1
prog/shell.txt · Last modified: 2019/09/20 15:52 by 127.0.0.1