Advertisement
Gistrec

Управление ресурсами в ВЧ 1

Feb 4th, 2019
160
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.23 KB | None | 0 0
  1. #!/bin/bash
  2.  
  3.  
  4. path=$1;
  5.  
  6. for file in `dir "$path" --sort time`
  7. do
  8.         if [ -d "$path$file" ]
  9.         then
  10.                 bash /home/alex/Desktop/NSTU/first.sh "$path$file/"
  11.                 echo "$path$file"
  12.         fi
  13. done
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement