Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagebash
titleCopy executables to somewhere already in your path (IE $HOME/local/bin)
collapsetrue
mkdir -p $HOME/local/bin $HOME/local/share # note deliberately creating 2 folders by using the space between them
cp $WORK/src/SPAdes-3.13.0-Linux/bin/* $HOME/local/bin  #Note that by specifying the full path all the files and the destination, this command can be run from anywhere on TACC.
cp -r $WORK/src/SPAdes-3.13.0-Linux/share/spades $HOME/local/share

...