Answers for "how to loop in bash on files with samen name"

14

bash loop over files in directory

#!/bin/bash
for filename in /Data/*.txt; do
    ...
done
Posted by: Guest on May-25-2020
-2

for loop in bash for files

#!/bin/bash
FILES=/path/to/*
for f in $FILES
do
  echo "Processing $f file..."
  # take action on each file. $f store current file name
  cat $f
done
Posted by: Guest on September-07-2020

Code answers related to "how to loop in bash on files with samen name"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language