Posted on March 17th, 2014
Posted on March 17th, 2014
Posted on February 25th, 2014
Posted on February 24th, 2014
#!/bin/bash
FILES=$1/*.pkt
#echo "start"
#echo "$FILES"
for f in `ls $FILES`
do
echo "Processing $f file..."
7za a -tzip -v50M "$f.zip" "$f"
# take action on each file. $f store current file name
#cat $f
done
Posted on February 12th, 2014
Posted on February 11th, 2014
Posted on February 10th, 2014
Posted on February 5th, 2014
Posted on January 25th, 2014
' Contents of class DerivedClass Implements BaseClass Private Sub BaseClass_BaseMethod() End Sub