- id no should be of 6 characters (like M000001).
Algo como isso pode fazer isso:
if [[ ${#input_variable} != "6" ]] then
echo "wrong length"
exit 1
fi
- When I enter the correct id, the script is copying the file. However when i enter wrong id eg. M000050 which is not present in remote server, then also it is showing the file is copied. But I don't have any idea where it is copying the file.
Copia o arquivo para o diretório "padrão" ftp
, porque o cd
falhou, você fica no diretório anterior (você pode descobrir qual é o caminho para esse diretório usando o comando pwd
).
- I need to create the directory /final/ if it doesn't exit in remote machine. the path till inputs will be present in remote server.
mkdir /wpath/to/copy/files/$input_variable/inputs/final/
deve fazer isso