Explore >> Select a destination


You are here

purefun.dev
| | bosker.wordpress.com
10.2 parsecs away

Travel
| | Calling all bash users. This is a public service announcement. Heres something you need to know if you want to write bash scripts that work reliably, but you probably dont. Recommendations For script authors: Every bash script that uses the cd command with a relative path needs to call unset CDPATH, or else it may
| | swethatanamala.github.io
10.4 parsecs away

Travel
| | Just a description of command in linux
| | lanziani.com
6.1 parsecs away

Travel
| | I do a big use of shell scripts, and many of them contain a for loop, do you know what normally happen when you press CTRL^C and the script is executing an action inside the loop?
| | vxlabs.com
63.1 parsecs away

Travel
| The syntax-highlighted fenced code blocks in GitHub flavored markdown, or GFM, are a beautiful and useful invention. One starts a code block with three or more backticks or tildes, followed by the name of the language, and then proceeds to show one's code, which, at least on GitHub, is then syntax highlighted. In other words, something like this in your markdown: ```python def computer_says(no): print("computer says %s" % (no,)) ``` Would become this in the preview: