{"id":16446510,"url":"https://github.com/edoardottt/bashify","last_synced_at":"2025-03-23T08:32:17.192Z","repository":{"id":39907515,"uuid":"470319865","full_name":"edoardottt/bashify","owner":"edoardottt","description":"Powershell profile to bashify your Windows prompt","archived":false,"fork":false,"pushed_at":"2024-11-10T09:09:53.000Z","size":57,"stargazers_count":11,"open_issues_count":0,"forks_count":2,"subscribers_count":3,"default_branch":"main","last_synced_at":"2025-03-01T23:41:30.988Z","etag":null,"topics":["bash","cli","cli-app","console","console-application","linux","powershell","powershell-script","powershell-scripts","profile","prompt","shell","windows","windows-10","windows-app"],"latest_commit_sha":null,"homepage":"https://edoardottt.com/","language":"PowerShell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/edoardottt.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null},"funding":{"github":"edoardottt","liberapay":"edoardottt","patreon":"edoardottt","ko_fi":"edoardottt","open_collective":"edoardottt","custom":"https://www.paypal.me/edoardottt"}},"created_at":"2022-03-15T20:22:11.000Z","updated_at":"2024-12-30T22:26:47.000Z","dependencies_parsed_at":"2023-11-29T11:26:46.665Z","dependency_job_id":"14a2056e-02ab-4b1d-be4e-ff82cc39d77d","html_url":"https://github.com/edoardottt/bashify","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/edoardottt%2Fbashify","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/edoardottt%2Fbashify/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/edoardottt%2Fbashify/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/edoardottt%2Fbashify/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/edoardottt","download_url":"https://codeload.github.com/edoardottt/bashify/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":244287908,"owners_count":20428892,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["bash","cli","cli-app","console","console-application","linux","powershell","powershell-script","powershell-scripts","profile","prompt","shell","windows","windows-10","windows-app"],"created_at":"2024-10-11T09:47:53.135Z","updated_at":"2025-03-23T08:32:17.181Z","avatar_url":"https://github.com/edoardottt.png","language":"PowerShell","funding_links":["https://github.com/sponsors/edoardottt","https://liberapay.com/edoardottt","https://patreon.com/edoardottt","https://ko-fi.com/edoardottt","https://opencollective.com/edoardottt","https://www.paypal.me/edoardottt"],"categories":[],"sub_categories":[],"readme":"# bashify\nPowershell profile to bashify your Windows prompt\n\nHow does it work? 🔍\n--------\nRead more about profiles [here](https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.core/about/about_profiles?view=powershell-7.2).  \nIf you can't run the script it's likely you should change your [execution policy](https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.core/about/about_execution_policies?view=powershell-7.2). Remember to restore it once finished. \n\nInstallation 📥\n------\n- Locate the Powershell home with `echo $PSHOME` (likely to be `C:\\Windows\\System32\\WindowsPowerShell\\v1.0`)\n- Save the file `Microsoft.PowerShell_profile.ps1` (with this exact name) inside that folder\n- Close the terminal and reopen it\n\nCommands 🛠️\n------\n- [x] alias c=clear\n- [x] alias l=ls\n- [x] touch\n- [x] uname\n- [x] cut\n- [x] df\n- [x] head\n- [x] tail\n- [x] zip\n- [x] unzip\n- [ ] [du](http://langexplr.blogspot.com/2007/03/implementation-of-du-s-in-powershell.html)\n- [ ] [grep](https://www.thomasmaurer.ch/2011/03/powershell-search-for-string-or-grep-for-powershell/)\n- [ ] [top](https://superuser.com/questions/176624/linux-top-command-for-windows-powershell)\n- [ ] [sed](https://stackoverflow.com/questions/9682024/how-to-do-what-head-tail-more-less-sed-do-in-powershell)\n\nSources 🙏🏻\n------\n- [PowerShell equivalents for common Linux/bash commands](https://mathieubuisson.github.io/powershell-linux-bash/)\n- [What is an equivalent of \\*Nix 'cut' command in Powershell?](https://stackoverflow.com/questions/24634022/what-is-an-equivalent-of-nix-cut-command-in-powershell)\n- [Get-DiskFree.ps1](https://gist.github.com/mweisel/3c357eba86ac6cae15b2)\n- [How to do what head, tail, more, less, sed do in Powershell?](https://stackoverflow.com/questions/9682024/how-to-do-what-head-tail-more-less-sed-do-in-powershell)\n- [Using PowerShell to Create ZIP Archives and Unzip Files](https://blog.netwrix.com/2018/11/06/using-powershell-to-create-zip-archives-and-unzip-files/).\n\nChangelog 📌\n-------\nDetailed changes for each release are documented in the [release notes](https://github.com/edoardottt/bashify/releases).\n\nContributing 🤝\n------\nIf you want to contribute to this project, you can start opening an [issue](https://github.com/edoardottt/bashify/issues).\n\nLicense 📝\n-------\n\nThis repository is under [GNU General Public License v3.0](https://github.com/edoardottt/bashify/blob/main/LICENSE).  \n[edoardottt.com](https://edoardottt.com/) to contact me.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fedoardottt%2Fbashify","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fedoardottt%2Fbashify","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fedoardottt%2Fbashify/lists"}