Slashdot Mirror


User: Andrew+Aylett

Andrew+Aylett's activity in the archive.

Stories
0
Comments
1
First seen
Last seen
Profile
(view on slashdot.org)

Comments · 1

  1. Re:I only write trivial shell scripts on Adding Some Spice To *nix Shell Scripts · · Score: 1

    #!/bin/bash

    filename=$1

    case $filename in
      *.temp | *.tmp | *.junk )
        echo "$filename matched"
        ;;
      *)
        echo "$filename didn't match"
        ;;
    esac