03-25-2009 07:41 AM
03-26-2009 07:22 AM
lindevel mnt # mount -t cifs //localhost/Alfresco /mnt/alfresco -o username=admin,password=admin
#!/bin/bash
mkdir TestSpace
cd TestSpace
for i in $(seq 1 1 200)
do
mkdir "00$i - Project $i"
cd "00$i - Project $i"
for a in $(seq 1 1 12)
do
mkdir "Subspace $a"
done
cd ..
done
cd ..
lindevel TestSpace # ls -1 | wc -l
203
lindevel TestSpace #
This shows that there is currently 200 folders (plus the 3 desktop actions) inside the space. lindevel TestSpace # find . -name "test" -print
You don't need to search for something that exists, anything will do. lindevel TestSpace # ls -1 | wc -l
148
lindevel TestSpace #
This is clearly not right, some of the spaces are not showing up at all.
lindevel mnt # mount -t nfs localhost:/alfresco /mnt/nfs
lindevel mnt # cd nfs
lindevel nfs # cd TestSpace/
lindevel TestSpace # ls -1 |wc -l
192
lindevel TestSpace #
Again, this is not right as there are 8 spaces missing. On some further examination, it appears as though every 23rd space is left out (counting from 0).03-31-2009 12:46 PM
03-31-2009 02:33 PM
04-01-2009 06:38 AM
04-01-2009 06:59 AM
Tags
Find what you came for
We want to make your experience in Hyland Connect as valuable as possible, so we put together some helpful links.