Files
2020-10-17 10:22:39 +02:00

8 lines
60 B
Bash

#!/bin/bash
IFS=$','
for path in $1
do
echo "$path"
done