Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
[gray]# remove zip extension[/gray]
DIRNAME=${FILENAME%.zip}
[gray]# remove any extension[/gray]
DIRNAME=${FILENAME%.*}
[blue]master #[/blue] wsFilePath="/myfile/tmp/Par.List.dat"
[blue]master #[/blue] wsFile=`basename $wsFilePath| cut -d. -f1`
[blue]master #[/blue] echo "$wsFile"
Par
# print 12345:
echo ${line:0:(5)}
# print 0abcd
echo ${line:(-5)}