Last active
March 17, 2022 09:11
-
-
Save icetee/588bad0175dae0bdaf1b312c6d6bac2c to your computer and use it in GitHub Desktop.
Save all .ftpconfig in the folder.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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