Quantcast
Channel: Write a shell script which will move all files in the current directory containing the word "hello" into a separate folder called "hello-world" - Ask Ubuntu
Browsing latest articles
Browse All 4 View Live

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 Article


Answer 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 Article


Answer 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 Article

Write 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
Browsing latest articles
Browse All 4 View Live