mirror of
https://github.com/radareorg/radare2.git
synced 2024-12-01 09:00:46 +00:00
15 lines
243 B
Bash
Executable File
15 lines
243 B
Bash
Executable File
#!/bin/sh
|
|
[ -z "$TMPDIR" ] && TMPDIR=/tmp
|
|
[ -w "$TMPDIR" ] || TMPDIR="$PWD"
|
|
T=$TMPDIR/.cc.txt
|
|
if [ -n "$1" ]; then
|
|
echo 0 > $T 2> /dev/null
|
|
N=0
|
|
else
|
|
N=`cat $T 2> /dev/null`
|
|
fi
|
|
N=$(($N+1))
|
|
basename `pwd`
|
|
echo $N | tee $T 2> /dev/null
|
|
exit 0
|