Linux: Bash if Bedingungen

Nachfolgend möchte ich alle von der Shell Bash und dem Programm "if" sowie "test" bereitgestellten, Bedigungen oder Conditions für ein Shellscript vorstellen.

  • -a file
    1. => True if file exists.
  • -b file
    1. => True if file exists and is a block special file.
  • -c file
    1. => True if file exists and is a character special file.
  • -d file
    1. => True if file exists and is a directory.
  • -e file
    1. => True if file exists.
  • -f file
    1. => True if file exists and is a regular file.
  • -g file
    1. => True if file exists and its set-group-id bit is set.
  • -h file
    1. => True if file exists and is a symbolic link.
  • -k file
    1. => True if file exists and its "sticky" bit is set.
  • -p file
    1. => True if file exists and is a named pipe (FIFO).
  • -r file
    1. => True if file exists and is readable.
  • -s file
    1. => True if file exists and has a size greater than zero.
  • -t fd
    1. => True if file descriptor fd is open and refers to a terminal.
  • -u file
    1. => True if file exists and its set-user-id bit is set.
  • -w file
    1. => True if file exists and is writable.
  • -x file
    1. => True if file exists and is executable.
  • -O file
    1. => True if file exists and is owned by the effective user id.
  • -G file
    1. => True if file exists and is owned by the effective group id.
  • -L file
    1. => True if file exists and is a symbolic link.
  • -S file
    1. => True if file exists and is a socket.
  • -N file
    1. => True if file exists and has been modified since it was last read.
  • file1 -nt file2
    1. => True if file1 is newer (according to modification date) than file2,
      or if file1 exists and file2 does not.
  • file1 -ot file2
    1. => True if file1 is older than file2, or if file2 exists and file1 does not.
  • file1 -ef file2
    1. => True if file1 and file2 refer to the same device and inode numbers.
  • -o optname
    1. => True if shell option optname is enabled. The list of options appears
      in the description of the -o option to the set builtin
  • -z string
    1. => True if the length of string is zero.
  • -n string string
    1. => True if the length of string is non-zero.
  • string1 == string2
    1. => True if the strings are equal. ‘=’ may be used in place of ‘==’ for strict
      POSIX compliance.
  • string1 != string2
    1. => True if the strings are not equal.
  • string1 < string2
    1. => True if string1 sorts before string2 lexicographically in the current locale.
  • string1 > string2
    1. => True if string1 sorts after string2 lexicographically in the current locale.
  • arg1 OP arg2
    1. => OP is one of ‘-eq’, ‘-ne’, ‘-lt’, ‘-le’, ‘-gt’, or ‘-ge’. These arithmetic binary
      operators return true if arg1 is equal to, not equal to, less than,
      less than or equal to, greater than, or greater than or equal to arg2, respectively.
      Arg1 and arg2 may be positive or negative integers.

    Diese Ausdrücke können ebenso gruppiert werden:

  • (Ausdruck)
    1. => Wahr, wenn der angegebene Ausdruck wahr ist. Wird verwendet, um Ausdrücke zu gruppieren.
  • ! Ausdruck
    1. => Wahr, wenn der angegebene Ausdruck falsch ist.
  • Ausdruck1 && Ausdruck2
    1. => Wahr, wenn Ausdruck1 und Ausdruck2 wahr sind.
  • Ausdruck1 || Ausdruck2
    1. => Wahr, wenn entweder Ausdruck1 oder Ausdruck2 wahr ist.

    Schreibe einen Kommentar