Search results

  1. F

    Help creating shell script

    Below is an example of a Bash script that creates folders with the modification date of the files and moves the files to these folders: #!/bin/bash # diretório dos arquivos a serem movidos dir='/caminho/para/os/arquivos' # loop pelos arquivos no diretório for file in "$dir"/* do # verifica...
  2. F

    Help creating shell script

    it is giving an error message when listing the files in the folder and saving to the variable. i did as you explain in the video
  3. F

    Help creating shell script

    Now I'm watching your video and seeing that you explain this variable problem, I'm going to see if I get it, thank you very much. I have subscribed to your YouTube channel
  4. F

    Help creating shell script

    I can't read the modification date of the files and save it in a variable to use that variable to create the folders before moving the files
Top