Skip to content

Instantly share code, notes, and snippets.

@icetee
Last active March 17, 2022 09:11
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save icetee/588bad0175dae0bdaf1b312c6d6bac2c to your computer and use it in GitHub Desktop.
Save icetee/588bad0175dae0bdaf1b312c6d6bac2c to your computer and use it in GitHub Desktop.
Save all .ftpconfig in the folder.
# macOS
find . -maxdepth 5 -iname ".ftpconfig" | zip DEV.zip -@
# Windows 10
Get-ChildItem -Recurse -Depth 5 -Filter ".ftpconfig" -Path . | % { $_.FullName } | zip DEV.zip -@
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment