Horje
bash for file in directory Code Example
bash loop over files in directory
#!/bin/bash
for filename in /Data/*.txt; do
    ...
done
bash for file in directory
# Basic syntax:
for file in /directory/*
do
	echo $file
done
# Where:
#	- the echo command is run on each file found using the search pattern 
#		(here, all files in the /directory/ folder)

# Example usage:
# Say you have the directory "/my/favorite/files" with the following files:
test.txt
my.txt
code.png

for file in /my/favorite/files/*.txt; do
	echo $file
done
--> test.txt
--> my.txt
# Note, code.png isn't printed because it doesn't match the search pattern
bash for file in directory
$ for f in *.c; do echo "Processing $f file.."; done




Shell

Related
copy everything in a directory linux Code Example copy everything in a directory linux Code Example
git pull sith ssh key Code Example git pull sith ssh key Code Example
yum install redis cli Code Example yum install redis cli Code Example
list all commits for repo api github Code Example list all commits for repo api github Code Example
download file github Code Example download file github Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
9