We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
CommunitySolidServer/Recipes#53
This will solve the issue adding the missing triple to root/.meta files
root/.meta
# cd /mnt/volume_lon1_01 ## count root/.meta files # find solidcommunity.net/*/.meta -type f -name ".meta" | wc -l ## list files that do contain `Storage` # find solidcommunity.net/*/.meta -type f -name ".meta" -exec grep -L "Storage" {} ";" ## run update # find solidcommunity.net/*/.meta -type f -name ".meta" -exec grep -L "Storage" {} ";" -exec sed -i '$a <> a <http://www.w3.org/ns/pim/space#Storage>.' {} + | wc -l
explanation of run update
.meta
Storage
<> a <http://www.w3.org/ns/pim/space#Storage>.
To test the run update script, run it twice on an existing pod folder. find solidcommunity.net/xxxx/.meta ....
update script
find solidcommunity.net/xxxx/.meta ....
The text was updated successfully, but these errors were encountered:
patch done on solidcommunity.net
Sorry, something went wrong.
No branches or pull requests
CommunitySolidServer/Recipes#53
This will solve the issue adding the missing triple to
root/.meta
filesexplanation of run update
root/.meta
files.meta
that do not have aStorage
string content.meta
the triple<> a <http://www.w3.org/ns/pim/space#Storage>.
and print number of files appended
To test the run
update script
, run it twice on an existing pod folder.find solidcommunity.net/xxxx/.meta ....
The text was updated successfully, but these errors were encountered: