Skip to content

Instantly share code, notes, and snippets.

View TomSchillemans's full-sized avatar

Tom Schillemans TomSchillemans

  • Netherlands
  • 09:23 (UTC +02:00)
View GitHub Profile
@TomSchillemans
TomSchillemans / export_path.fish
Created April 8, 2015 00:04
Export arguments to path. Add as many arguments as you need paths to be exported!!
function export_path --description 'Export to PATH (Enter multiple arguments for each path to export)'
for exp_path in $argv
set PATH $PATH $exp_path
end
end