i am trying to run linux command to run python script:
for f in /mnt/data/service/fmriprep/geht/sub-P*; do (python 2_correlation.py -i "$f" -o /mnt/data/service/corr_graph/correlation_P*.csv )
my python script takes as input file in -i directory and return as -o a new .csv. I expect to return correlation_P* for each folder P* (P001, P002, P*) to this path (/mnt/data/service/corr_graph/correlation_P*.csv with the same P001,P002, P*), but stucked.