A diverse library of shellscripts. This is my preferred working environment when using a Unix shell. But I also use this project to collect useful bits and bobs as I discover them.
Many of these scripts will run standalone, but some of them depend on other jsh scripts, so they must be on the PATH.
Run jsh/jsh
or source jsh/startj
or source jsh/startj-simple
to setup your PATH so they will all run fine.
Note that some of these scripts are excellent, but some of them are old snippets I wrote which might make a mess of your files. If a script does not have documentation, then please read it before running it! That is what jdoc
is for.
There are more detailed installation instructions below. But first, here are some examples of the available scripts:
jdoc <jsh_command> | <text> Show or search script documentation (like man for jsh scripts)
et <jsh_command> | <new_com> Edit a script ("Edit tool" - so old it used to be a .BAT!)
This will open the given script in your favourite editor (see 'edit')
It can also be used to create a new script
So it is a very quick way to create new commands / scripts for future use
. lscolsinit Loads a comprehensive color scheme for `ls`
. hwipromptforbash / forzsh A pretty and informative prompt
. xttitleprompt Show detailed information about your shell in the title of your terminal window
These are sourced automatically if you run jsh/jsh
or source startj
Please note that all my rc files now live separately here. For example you may obtain a nice set of .dircolors
for lscolsinit
from there.
. dirhistorysetup.bash / .zsh Provide `b` and `f` and `dirhistory` to go back/forward
. bashkeys / zshkeys Ctrl-D/F/R/T/X/V/Z/B/O to jump and delete small/large words
cd <partial_path> typo helper: autocompletes partial matches, or shows alternatives when multiple matches
h [<pattern>] provides fast searching of history
.. / ... / .... shortcuts for cd ../../.. etc.
. autocomplete_from_man Tries to provide tab-completion for any command, by peeking at the command's man page
Also handy when working from the cmdline:
jman Popup a man page in a separate terminal window
japropos Search a bunch of things, not just man pages
gitls Like `ls -lartFh --color` but with git status for each file
git* A bunch of git scripts which are often/occasionally handy.
But my most useful scripts (e.g. gcf) are in my rc_files repo under git_aliases.
For use on the command-line or when writing actual scripts. Most of the following read a list from standard in (assumes inputs are separated by newlines):
| highlight <regexp> [<colour>] Highlights matching text in the given colour (or a random colour)
Example: tail -f /var/log/messages | highlight 'warn' yellow | highlight '.*ERROR.*' red
| withalldo <cmd...> A shortcut for xargs
| foreachdo <cmd...> A shortcut for | while read FILE; do ...; done
| dog <target_file> Atomic write, does not clobber until the end, safe to use after cat!
| striptermchars Remove ANSI color codes
| trimempty Remove empty/blank lines
| removeduplicatelines Use removeduplicatelinespo to preserve order
| takecols <column_numbers...> Like cut but no params to remember! Assumes fields are separated by whitespace.
| dropcols <column_numbers...> Removes the specified columns, keeps the rest
| beforefirst <regexp> Take portion of each line before pattern
| afterlast <regexp> or after pattern
| fromline [-x] <regexp> Take all lines after or before given pattern
| toline [-x] <regexp> [-x] means exclude the matching line
| prependeachline <txt_to_prepend> Puts the given text before each line of input
| numbereachline Puts a number before each line of input
| dateeachline [-fine] Puts the date and time before each line of input (useful after tail, or for logging)
| dirsonly Retains only those lines of input which are directories
| filesonly Retains only those lines of input which are files
| sortfilesbydate
| sortfilesbysize
| list2regexp
| chooserandomline
chooserandom <args...>
| countlines
echolines <glob> Print each of the arguments you provided on a separate line. (Turns words into lines)
waitforkeypress
filesize <file>
mp3duration <file>
imagesize <file>
| diffhighlight add colours to diffs/patches
Example: diff file.old file.new | diffhighlight | more
highlightstderr <cmd...> Run a command as usual, but distinguish error output in red
Rarely used on the commandline.
. importshfn <shellscript> Creates a function from the shellscript, so it will run quicker if you call it many times. YMMV
. require_exes <exe_names...> exits if the gives exes are not on your PATH
memo [ -t "N weeks" ] <slow_command...> Remembers the first output and gives it back on subsequent calls
prettydiff <file1> <file2> Normal GNU diff with > < markers, plus colour highlighting
jdiff Side-by-side diff with markers and colours
jdiffsimple Plain text with no > < + - markers just colors
jfcsh [-bothways] Pure shell comparison showing unique lines
diffcoms <command1> <command2> Compare the output of two commands
jwatch <cmd> Repeatedly run <cmd>, and show lines added or removed from the output
Example: jwatch find . Will show if any files are added or removed below the current folder
Example: jwatch psforwatch Will show processes spawning and expiring on your system
Example: jwatch -delay 60 df -h | dateeachline Log any change in disk usage every 1 minute
jwatchchanges [-fine] <cmd> Show the cmd output, highlighting any changes (more like watch(1))
Example: jwatchchanges -fine /sbin/ifconfig
Example: jwatchchanges -fine eval "netstat -n | head -n $((LINES-4))"
sedreplace <search> <replace> <files...> Search replace text in files (using sed)
worddiff / wordpatch fine grained diff and patch, works on words instead of whole lines
wget_flat_files Some common wget recipes
wget_archive_page
wget_get_everything_below
wget_all_files_on_page_with_extension
wget_all_links_with_extension
swap_caps_ctrl Make better use of that massive Caps Lock key
make_caps_lock_control_escape
kill-some-chrome-tabs Too many Chrome tabs open, eating all your memory? "Unload" the heaviest tabs without losing them.
findjob <process_name> An alternative to `ps aux | grep <...>`
monitorps Report new/closed processes (useful if you notice a lot of forks but don't know why)
listopenports [ <process_name> ]
listopenfiles [ <process_name> ]
whatisaccessing <file/folder>
whatisonport <port>
whatsblockingaudio
whatsplaying
traffic_shaping_monitor Monitor how much is flowing through /sbin/tc classes
findbrokenlinks [ <folders...> ]
dusk show disk usage by folder (du -sk | sort)
duskdiff shows which folder have grown/shrunk since the last time dusk was run
del <files/folders...> moves files to trash, reclaimable in case of accident
rmlink <symlinks...> only removes files which are symlinks (somewhat like rmdir, safer than using rm)
swap <fileA> <fileB> Renames each file to switch them around
Can also be used on just one file, to give it a temporary name while debugging,
and then run again to bring it back
renamefiles <search_pattern> <replace_pattern> [<files...>] |sh
editfilenames opens Vim to let you edit filenames in a batch
lazymount <file_to_mount> Can mount a few different types of files, with minimal user interaction
(I mainly used this to mount isos and diskdumps)
Can be useful when cleaning up old duplicate folders/files
diffdirs <dirA> <dirB> Or for more details, use diff -r
findduplicatefiles <folders...> Detects duplicates, can also be used to remove duplicates
diffgraph <related_files...> Shows which files are most closely related, using a numerical measure of their difference
Useful when you have 10 copies of a text file, but no dates or version numbers
jfcsh <fileA> <fileB> Prints lines which are in fileA but which do not appear in fileB
git-which-commit-has-this-blob Search this repo's history for a file matching the given file/hash
check_sparseness Determine if a file is sparse or not
diffimages <img1> <img2> [<out>] Produces an image which is the subtraction of img2 from img1. All black = identical
xsnapshot
getxwindimensions
put_current_xwindow Allows you to position the current window on the left/right/bottom edge
convert_to_mp3 <any_audio_or_video_file>
convert_to_ogg <any_audio_or_video_file>
reencode_video_to_x264 <video_file>
extract_clips_from_video <video_file> Hit pause to mark start and stop points
wp <term> fast Wikipedia search (short summary) [CURRENTLY BROKEN]
| txt2speech makes festival sound slightly less stupid
equalize_image Optimize contrast and saturation for an image
batch_shrink_images Convert multiple high-res images to a more sensible size and quality
autocrop_images Works on pngs but not jpgs
friendlygitcommit git add -p is great for combining multiple changes into one commit
But what if you have 20 changed files, and want each file to have its own commit?
friendlygitcommit will prompt you for a different message for each file
eximflushall Useful for exim admins who want to clear/redirect/flush mail queues
git-update-all-repos Weekly cronjob to fetch the latest version of all repos on disk
git-create-empty-branch Don't use this repo often? Switch to an empty branch to save disk space.
findpkg <partial_name> Search for installed package
findpkg -all <partial_name> Search for available package
pkgversions <package_name> See what versions of a specific package are available (old, new, currently installed)
apt_find_autoable_packages (Slow) Search for packages which are pulled in by others, so could be marked 'auto' instead of 'install'
export UNIX_TEXT_ADVENTURE=1
For dirhistory, makes you feel like you are playing a classic adventure game as you cd around your filesystem
fifovo Watch a live video stream, storing the stream in a ringbuffer of files. Listen for instructions to rewind and capture parts of the stream. (The last time I tried this, it had stopped working.)
There are plenty more script I haven't mentioned.
First clone the repository:
$ git clone https://github.com/joeytwiddle/jsh
Now create all the symlinks in $HOME/tools
:
$ jsh/jsh jsh/code/shellscript/init/refreshtoollinks
OK setup is now complete.
If you want jsh to always load when you start a shell, add the following lines to your .bashrc
or .zshrc
:
export JPATH="$HOME/jsh"
source "$JPATH/startj"
If you want to run jsh on Mac OS X then you probably want to:
$ brew install coreutils gnu-sed findutils
Then add the following lines to your .zshrc
or .bashrc
, before the JPATH
lines we inserted earlier:
# (This used to be /usr/local/opt)
export PATH="/opt/homebrew/opt/coreutils/libexec/gnubin:$PATH"
export PATH="/opt/homebrew/opt/gnu-sed/libexec/gnubin/:$PATH"
export PATH="/opt/homebrew/opt/findutils/libexec/gnubin:$PATH"
# This includes a lot of "apps" but not the commands we want above
#export PATH="/opt/homebrew/bin:$PATH"
This is because Jsh makes heavy use of GNU utils such as grep
and sed
. Although many of these programs are distributed with Mac OS X, they are BSD versions and do not accept exactly the same arguments.
(This PATH
will be provided to any non-Jsh commands you call from within a Jsh shell. So far this has caused me no problems. I have been able to run brew
, rvm
and rails
from inside or outside Jsh.)
Update: Actually I have started to support BSD sed and grep when I discover bugs, so many of the core scripts will work. But more scripts will work correctly if you follow the steps above.
Start a fresh jsh shell with all the bells and whistles:
jsh/jsh
Use exit
or Ctrl-D
to leave it.
Alternatively, you can load jsh directly into your current shell:
. jsh/startj
But if you only want the scripts on your PATH, and crucial initialisation, but none of the visual shell tweaks:
. jsh/startj-simple
All that script really does is this (so you could do it manually if you wanted):
export JPATH="$HOME/jsh'
export PATH="$PATH:$JPATH/tools"
Or if you only want to run one jsh script and then return to your current shell:
jsh/jsh <jsh_command> [ <args...> ]