Skip to content

Releases: yousefvand/shellman

v2.2.1

08 Nov 07:52
Compare
Choose a tag to compare

2.2.1

  • Argument parsing
    • parse command line arguments (flags/switches)
  • bug fixed (int less than). Thanks @Xaqron

v2.1.0

06 Nov 15:59
Compare
Choose a tag to compare
  • Documentation improved.
  • import function (fn/fx) added.
    • Import functions from other shell script files.
  • options function (fn/fx) added.
    • Provide a list of options to user.

Math namespace

04 Nov 07:32
Compare
Choose a tag to compare
  • math...
    • math constants (π, e, Ω, ...)
    • math operations (with precision).

v1.5.1

26 Oct 09:52
Compare
Choose a tag to compare
  • string substring typo fixed.

v1.5.0

25 Oct 20:54
Compare
Choose a tag to compare
  • region: A region for specific purpose (functions, variables...)
  • string manipulation
    • string length: length of string in characters.
    • string trim: remove leading and trailing white space(s).
    • string trim left: remove leading white space(s).
    • string trim right: remove trailing white space(s).
    • string trim all: remove all white space(s).
    • string replace: find all occurrences of a substrings and replace them.
    • string reverse: reverse string characters.
    • string toLower: convert string to lowercase.
    • string toUpper: convert string to uppercase.
    • string substring: part of the string from offset with [length] characters.
    • string contains: check whether string contains substring.
    • string indexOf: first index of substring in string.

v1.4.0 released

15 Oct 14:37
Compare
Choose a tag to compare

v1.3.0 release

15 Oct 11:45
Compare
Choose a tag to compare
  • stopwatch
  • fn... / fx... whole function and usage insertion.
    • fn banner simple: insert function to print a banner.
    • fn banner color: insert function to print a color banner.