Skip to content

Instantly share code, notes, and snippets.

@imixtron
Created September 19, 2019 08:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save imixtron/691d4a7d2211b7f9d2b7a8365caac759 to your computer and use it in GitHub Desktop.
Save imixtron/691d4a7d2211b7f9d2b7a8365caac759 to your computer and use it in GitHub Desktop.
bash loop array and run command
array=( chg8p p9dzh ); \
loc="/bin/"; \
for i in "${array[@]}"; \
do echo $i; \
mv $i $loc
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment