Skip to main content

Search

Items tagged with: shell


Interesting project #Gum, anyone already tests it ? @aral ? « A tool for glamorous #shell #scripts. Leverage the power of Bubbles and Lip Gloss in your scripts and aliases without writing any Go code ! » :idle: https://github.com/charmbracelet/gum


Use a terminal? Write shell scripts?

Check out these two tools:

- Explain shell: https://explainshell.com
- ShellCheck: https://www.shellcheck.net

(Via the Web Weekly newsletter.)

#shell #terminal #scripting #dev


Send Output To Editor (sote) 1.0.0 released

Fish(er) plugin that sends the output of your last command to your editor.

Ever wished you could grab and manipulate some text from the output of a command without using the mouse and copy/paste? This is for you :)

Install:

fisher install small-tech/sote

More info:

https://github.com/small-tech/sote#readme

(So this is me apparently not yak shaving today.)

#fish #shell #terminal #sote


From a POSIX shell `$OLDPWD` holds the name of the previous working directory:
cd /tmp
echo You are here: $PWD
echo You were here: $OLDPWD
cd $OLDPWD

# # # #