I followed the guide to create a project and compared my project to the Lambda one.
The normal programa looks like:
internal class ProgramI followed the guide to create a project and compared my project to the Lambda one.
The normal programa looks like:
internal class Program| # Add this to your ~/.bashrc | |
| # With docker running machines counter: | |
| export PS1="\n\n[\[\033[01;30m\]\A\[\033[00m\]] 🐳\$(docker ps -q | wc -l) \[\033[01;31m\]\u\[\033[00m\]@\[\033[01;35m\]\`if [[ \$PWD = /mnt/c* ]]; then echo \"#\"; else echo \"&\"; fi\`/\W\[\033[00m\]$ " | |
| # With docker running machines / stopped machines counter: | |
| export PS1="\n\n[\[\033[01;30m\]\A\[\033[00m\]] 🐳\$(docker ps -q | wc -l)/\$(docker ps -a -q | wc -l) \[\033[01;31m\]\u\[\033[00m\]@\[\033[01;35m\]\`if [[ \$PWD = /mnt/c* ]]; then echo \"#\"; else echo \"&\"; fi\`/\W\[\033[00m\]$ " | |
| # No docker counters: | |
| export PS1="\n\n[\[\033[01;30m\]\A\[\033[00m\]] \[\033[01;31m\]\u\[\033[00m\]@\[\033[01;35m\]\`if [[ \$PWD = /mnt/c* ]]; then echo \"#\"; else echo \"&\"; fi\`/\W\[\033[00m\]$ " |
| @echo off | |
| set current=%cd%\ | |
| set folder=%1 | |
| set batpath=%2 | |
| cd %folder% > NUL | |
| if "%folder%" neq "" ( | |
| set current=%current%%folder%\ |