You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
How do you define a recursion on a file, compared to a recursion in a folder with sub folders? Say you have a folder example on your desktop, organized with a sub folder as in
~/Desktop$ tree ./example/
./example/
├── a.f90
├── b.f90
└── sub
└── c.f90
1 directory, 3 files
Then, either a) run
~/Desktop$ fprettify ./example/*.f90
to work only in folder exampleexcluding sub folders and their files like c.f90. Or b) use
~/Desktop$ fprettify -r ./example
which equally considers sub folders of folder example and processes their contents (i.e. including file c.f90)
fprettify -r $X
works if X is a directory but not if X is a file.The text was updated successfully, but these errors were encountered: