Skip to content

Instantly share code, notes, and snippets.

@zoltanctoth
Last active April 14, 2018 07:40
Show Gist options
  • Save zoltanctoth/cbeec86629c91d38fc30bd757cc3c661 to your computer and use it in GitHub Desktop.
Save zoltanctoth/cbeec86629c91d38fc30bd757cc3c661 to your computer and use it in GitHub Desktop.
create new month in datapao admin
gfind 2018-02\ február -type d -print0 | sed 's/2018-02 február/2018-03 március/g' | xargs -0 -I {} mkdir -p {}
@zoltanctoth
Copy link
Author

gfind '2018-02 február' -type d -print0 | sed 's/2018-02 február/2018-04 április/g' | xargs -p -0 -I {} mkdir -p "{}"

@zoltanctoth
Copy link
Author

gfind '2018-02 február' -type d -print0 | sed 's/2018-02 február/2018-04 április/g' | xargs -0 -I {} mkdir -p "{}"

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment