Created
November 7, 2016 04:56
-
-
Save darktef/21ff4890089631db91649ea1c24a7ed1 to your computer and use it in GitHub Desktop.
Fish - move files in parent folder to child 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
find . -maxdepth 1 -type f -exec mv '{}' ./wk1/ \; | |
// it seems like no -t available in fish Shell and Mac... |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment