0
#!/bin/bash
for dir in /home/username/git/*/
do
    for file in "$dir"/*
    do
        if [[ -f $file ]]
        then
            echo   "$file"
        fi
    done
done

実行しようとすると。私は得た

syntax error near unexpected toke' `do
'rocTest.sh: line 3: `do

なんで?

4

1 に答える 1