Skip to main content
Search
Search This Blog
Fixed Problems
Share
Get link
Facebook
X
Pinterest
Email
Other Apps
Labels
bash
example
files
find
linux
loop
read
while
October 09, 2017
Bash: Loop over results from find
Example:
#!/bin/bash find / -name "*" -print0 | while read -d $'\0' file do echo "found $file" done
Comments
Popular Posts
June 25, 2010
Oracle Universal Installer OS Version 6.1 Problem
June 25, 2010
WARNING: StandardServer.await: Invalid command received
Comments
Post a Comment