ihavegot

ihavegot1112bash

Jan 29th, 2020
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.17 KB | None | 0 0
  1. #!/bin/bash
  2.  
  3. if [[ -d $1 ]]
  4. then
  5.   for file in *txt
  6.   do  
  7.     mv $file $1/
  8.   done
  9. else
  10.   mkdir $1
  11.   for file in *txt
  12.   do  
  13.     mv $file $1/
  14.   done
  15.  
  16. fi
Advertisement
Add Comment
Please, Sign In to add comment