Created
July 30, 2019 12:33
-
-
Save seykron/3b26d3fc5edd54f24f2e9e174965fdb3 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
fun files2delete(args: List<String>) { | |
return args.flatMap { arg -> | |
walkFiles("~$arg*.*").map { pythonFile -> | |
styledEcho(fgRed, fgBlack, pythonFile) | |
pythonFile | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment