Advertisement
plirof2

bash RUN all scripts from specific folder (put it in startup )

Sep 18th, 2021
1,394
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.19 KB | None | 0 0
  1. # RUN all scripts from specific folder (put it in startup )
  2. #for f in "/mnt/home/downloads_linux/linux_/BULLSEYE/*.sh"; do
  3. cd /tmp/aaaa/
  4. for f in *.sh; do
  5.     echo "$f"  
  6.   bash "$f" &
  7. done
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement