↧
Answer by Zanna for Write a shell script which will move all files in the...
Let's break this down into smaller tasks. We need to create a directory hello-world, if it doesn't exist reliably identify files that contain the text hello reliably move the files to the new...
View ArticleAnswer by muclux for Write a shell script which will move all files in the...
This would be a solution following your idea with grep and xargs: #!/bin/bash mkdir hello-world grep -l hello * | xargs mv -t hello-world
View ArticleAnswer by Alvaro Niño for Write a shell script which will move all files in...
From a bash script named test.sh #!/bin/sh IFS=$'\n' for i in $( grep -l hello --exclude=*.sh --exclude-dir=hello-world * ); do mv $i hello-world/; done; From command line: IFS=$'\n' && for i...
View ArticleWrite a shell script which will move all files in the current directory...
Write a shell script which will move all files in the current directory containing the word hello into a separate folder called hello-world. The current directory contains files a b c d e and f out of...
View Article