Mentions légales du service

Skip to content
Snippets Groups Projects
Commit 5b3f12d6 authored by BOULLE Olivier's avatar BOULLE Olivier
Browse files

remove -printf for macos

parent c6356bb7
No related branches found
No related tags found
No related merge requests found
......@@ -46,7 +46,8 @@ fi
doc_params_list=(creation_date doc_name doc_type color height width fragment_number channel_coding start_sequence start_primer stop_primer)
for dir_name in $(find "$container_path"/* -maxdepth 0 -type d -printf "%f\n") ; do
#loop over names of directories in the container (should only be "0","1","2",...)
for dir_name in $(find "$container_path" -maxdepth 1 -mindepth 1 -type d -exec basename {} ';') ; do
#read the metadata for each stored document and asign it to variables
printf "$dir_name :\n"
for doc_param in "${doc_params_list[@]}" ; do
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment