mirror of
https://codeberg.org/scip/note.git
synced 2025-12-17 12:41:10 +01:00
FIXED: Forgot "PreferredEditor" config-option in the new config format.
FIXED: the interactive "cd .." command has ignored the presence of a
"DefaultLong" setting(and search too)... thx to Peter.
CHANGED: Optimized a little bit the output routine, now it is better to read.
ADDED: sub format and appropriate config-option for text formatting capabilities.
CHANGED: changed getconfig regexp, which allows now also to use Option = Param.
FIXED: was not possible to override config-options, which are set by default to
something.
ADDED: note chacks now, if a database os actually really encrypted and exits with
an error if it s and the user turned off encryption. This protects her from
destroying it's own database ..
56 lines
1.0 KiB
Bash
Executable File
56 lines
1.0 KiB
Bash
Executable File
#!/bin/sh
|
|
# create notes with topics which then represents the corresponding
|
|
# directory structure. Depending on how many files the directory
|
|
# contains, the resulting note-database may become very large.
|
|
# It will then have thousands of notes!
|
|
STARTDIR=$1
|
|
case $STARTDIR in
|
|
"")
|
|
echo "usage: stresstest.sh <directory>"
|
|
exit 1
|
|
;;
|
|
*)
|
|
LOCPFAD=`echo $STARTDIR | grep "^[a-zA-Z0-9.]"`
|
|
case $LOCPFAD in
|
|
"")
|
|
#echo nix
|
|
;;
|
|
*)
|
|
STARTDIR=`echo $STARTDIR | sed 's/^\.*//'`
|
|
STARTDIR="`pwd`/$STARTDIR"
|
|
STARTDIR=`echo $STARTDIR | sed 's/\/\//\//g'`
|
|
;;
|
|
esac
|
|
;;
|
|
esac
|
|
|
|
|
|
stress ()
|
|
{
|
|
FILES=""
|
|
for file in `ls $1|sort`
|
|
do
|
|
echo "$1/$file"
|
|
if [ -d "$1/$file" ] ; then
|
|
stress "$1/$file"
|
|
else
|
|
#echo "$1/" > /tmp/$$
|
|
#echo $file >> /tmp/$$
|
|
#`cat /tmp/$$ | note -`
|
|
FILES="$FILES $file"
|
|
fi
|
|
done
|
|
echo "$1/" > /tmp/$$
|
|
echo "$FILES" >> /tmp/$$
|
|
case $FILES in
|
|
"")
|
|
;;
|
|
*)
|
|
RES=`cat /tmp/$$ | note -`
|
|
;;
|
|
esac
|
|
FILES=""
|
|
}
|
|
|
|
stress $STARTDIR
|