Skip to main content
remove superfluous content (the commentary adds nothing to the answer, just saying it's a command and neither reiterating the question nor explaining what the command does)
Source Link

You Can use below command to achieve the same


command

 grep -li "world" /Vinodh/* | awk '{print "mv" " " $1 " " "/TEST/"}' | sh

 

You Can use below command to achieve the same


command

 grep -li "world" /Vinodh/* | awk '{print "mv" " " $1 " " "/TEST/"}' | sh

 
grep -li "world" /Vinodh/* | awk '{print "mv" " " $1 " " "/TEST/"}' | sh
Source Link
Praveen Kumar BS
  • 5.3k
  • 2
  • 11
  • 16

You Can use below command to achieve the same


command

 grep -li "world" /Vinodh/* | awk '{print "mv" " " $1 " " "/TEST/"}' | sh