77 projects for "sh" with 1 filter applied:

  • Quality and compliance software for growing life science companies Icon
    Quality and compliance software for growing life science companies

    Unite quality management, product lifecycle, and compliance intelligence to stay continuously audit-ready and accelerate market entry

    Automate gap analysis across FDA, ISO 13485, MDR, and 28+ regulatory standards. Cross-map evidence once, reuse across submissions. Get real-time risk alerts and board-ready dashboards, so you can expand into new markets with confidence
    Learn More
  • The CRM you will want to use every day Icon
    The CRM you will want to use every day

    With CRM, Sales, and Marketing Automation in one, Act! gives you everything you need for happier clients, more revenue, and less stress.

    Act! Premium is perfect for small and midsize businesses looking to market better, sell more, and create customers for life. With unparalleled flexibility and freedom of choice, Act! Premium accommodates the unique ways you do business. Whether it’s customizations to fit your specific business or industry processes or your preferences for deployment and access, the possibilities with Act! Premium are limitless.
    Learn More
  • 1
    World-sh
    This is a little project im making to help new users with doing a make world aka upgrading to FreeBSD stable
    Downloads: 0 This Week
    Last Update:
    See Project
  • 2
    XcodeProj

    XcodeProj

    Read, update and write your Xcode projects

    XcodeProj is a library written in Swift for parsing and working with Xcode projects. It's heavily inspired by CocoaPods XcodeProj and xcode. Using swift-sh you can automate project-tasks using scripts, for example, we can make a script that keeps a project’s version key in sync with the current git tag that represents the project’s version. Future adaption could easily include determining the version and bumping it automatically. If so, we recommend using a library that provides a Version object. ...
    Downloads: 7 This Week
    Last Update:
    See Project
  • 3
    Cloud Cost Handbook

    Cloud Cost Handbook

    Set of guides meant to help explain often-times complex pricing

    The Cloud Cost Handbook by vantage-sh is an open-source, community-driven documentation project that breaks down the often confusing and opaque pricing models of major public cloud providers into clear, practical guides written in plain English. It’s intended as an educational resource for developers, finance teams, and FinOps practitioners who need to understand how cloud costs are structured, what drives pricing across services, and how to estimate, optimize, and forecast spend without wading through dense official documentation. ...
    Downloads: 0 This Week
    Last Update:
    See Project
  • 4

    mkconfig

    build configuration tool

    mkconfig is a build configuration utility. It creates an output file intended to be included as a header file, run as a shell script, used as a configuration file, or any other use. mkconfig is written in portable shell script and designed to be extensible for any configuration use.
    Downloads: 0 This Week
    Last Update:
    See Project
  • InEight is a leader in construction project controls software Icon
    InEight is a leader in construction project controls software

    InEight serves contractors, owners, and engineers in capital construction

    Minimize risks, gain operational efficiency, control project costs, and make confident, informed decisions. InEight software has your back during every stage of construction, from accurate pre-planning to predictable execution and completion. When project teams collaborate effectively, every decision is backed by precise, authoritative insights.
    Learn More
  • 5

    empty

    Run applications under pseudo-terminal (PTY) sessions

    empty - run applications under pseudo-terminal (PTY) sessions to dialogue with interactive programs. Replace TCL/Expect with a simple tool and use your favorite shell (sh, bash, csh, tcsh, ksh, zsh, etc)
    Leader badge
    Downloads: 551 This Week
    Last Update:
    See Project
  • 6

    vash

    vash means Visual Assistant Shell, for everyday interaction with unix

    Visual Assistant Shell, is yet another visual shell with main idea not hide unix command line from user but increases speed of system responce; Vash runs as a supershell over /bin/sh (bash) providing a set of tools such as command line editor, arguments substitution, parameterized histoty, hotkey scripting, etc.
    Downloads: 5 This Week
    Last Update:
    See Project
  • 7
    command-output-to-html-table

    command-output-to-html-table

    A shell script to convert any file or command output into a html table

    ...The output html file can then be browsed from any location, using a local webserver or an internet www domain. Usage Examples: (Type them on Terminal) cd ~/Downloads/tabulate # location chmod +x *.sh cat "student_marks.csv" | { cat ; echo ; } | ./tabulate.sh -d "," -t "My School" -h "First Term" > "marks.html" # or > "/var/www/html/marks.html" -d specifies delimiting character, which is in between your input columns -t specifies page title -h specifies a header Browse marks.html with browser now, either by double clicking file, from file manager or inputting location on your browser. ...
    Downloads: 12 This Week
    Last Update:
    See Project
  • 8
    Arch Linux Desktop Install

    Arch Linux Desktop Install

    Arch Linux Desktop installer

    ...Look at archfi project to start your arch linux installation : https://github.com/MatMoul/archfi After reboot and your network ready, download the script : curl -L archdi.sf.net/archdi > archdi or if sourceforge is down : curl -L matmoul.github.io/archdi > archdi And run the script : sh archdi Or you can install it on your system with sh archdi -i And then you can use archdi cmd. With this, you can make your updates or install your packages later. You can watch my videos to show how to use it : https://www.youtube.com/playlist?list=PLytHgIKLV1caHlCrcTSkm5OF2WSVI1_Sq This package is only a launcher for archdi-pkg. ...
    Downloads: 55 This Week
    Last Update:
    See Project
  • 9
    Arch Linux Fast Install

    Arch Linux Fast Install

    Install Arch Linux with 2 lines of code

    ...list=PLytHgIKLV1caHlCrcTSkm5OF2WSVI1_Sq How to use : Boot with the Arch Linux image : https://www.archlinux.org/download/ Download the script : wget archfi.sf.net/archfi or if sourceforge is down : wget matmoul.github.io/archfi And launch the script : sh archfi
    Leader badge
    Downloads: 97 This Week
    Last Update:
    See Project
  • The complete IT asset and license management platform Icon
    The complete IT asset and license management platform

    Gain full visibility and control over your IT assets, licenses, usage and spend in one place with Setyl.

    The platform seamlessly integrates with 100+ IT systems, including MDM, RMM, IDP, SSO, HR, finance, helpdesk tools, and more.
    Learn More
  • 10
    Rayshade

    Rayshade

    Rayshade raytracer

    ...export CFLAGS="$CFLAGS -DPOPEN -DUSE_CPP" [ -n "$WITH_URT" ] && { CFLAGS="$CFLAGS -I/usr/local/include -DURT" LDFLAGS="$LDFLAGS -L/usr/local/lib64" LIBS=" /usr/local/lib64/librle.a export LDFLAGS LIBS } sh ./configure
    Downloads: 2 This Week
    Last Update:
    See Project
  • 11
    pure sh bible

    pure sh bible

    A collection of pure POSIX sh alternatives to external processes

    pure sh bible is a collection of shell scripting recipes written strictly in POSIX sh, without relying on Bash-only or external utilities unless absolutely necessary. The goal is to show that you can do a surprising amount with just portable, “pure” shell, which makes your scripts work across many Unix-like systems out of the box. Each snippet solves a common task (string handling, arrays, math, file operations, argument parsing) and is written in a way that favors clarity and portability over clever one-liners. ...
    Downloads: 1 This Week
    Last Update:
    See Project
  • 12
    mcrcon

    mcrcon

    Console based rcon client for minecraft servers.

    Mcrcon is IPv6 compliant minecraft rcon client with bukkit coloring support. It is well suited for remote administration and to be used as part of automated server maintenance scripts. - Does not trigger "IO: Broken pipe" or "IO: Connection reset" spam bug on server side. - Has workaround for server side bug (https://bugs.mojang.com/browse/MC-154617) ****************************************************************** Further development and new releases has moved to Github Github...
    Leader badge
    Downloads: 128 This Week
    Last Update:
    See Project
  • 13

    Schily Tools

    A Tool Box with tools written or managed by Jörg Schilling

    ...It includes programs like: cdrecord, cdda2wav, readcd, mkisofs, smake, bsh, btcflash, calc, calltree, change, compare, count, devdump, dmake based on SunPro Make, hdump, isodebug, isodump, isoinfo, isovfy, label, mt, obosh, od, p, POSIX patch, pbosh, sccs, scgcheck, scpio, sdd, sfind, sformat, smake, sh/bosh (Bourne sh), star, star_sym, strar, suntar, gnutar, tartest, termcap, and ved.
    Leader badge
    Downloads: 13 This Week
    Last Update:
    See Project
  • 14
    shift.sh
    This script is for shifting letters to hide them in a Bash script. For example for an Easteregg :)
    Downloads: 0 This Week
    Last Update:
    See Project
  • 15
    ping.sh
    This script sends ping-signals to an /24 network. Dieses Script sendet ping-Signale an ein /24 Netzwerk.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 16
    Shell Script Loader

    Shell Script Loader

    A framework for modular scripting

    Shell Script Loader is a framework for shell scripts that provides functions that can be used to load, include or call module shell scripts. It supports most shells including Bash, Zsh, Ksh, and other shells based on sh. A compiler can also be used. Please check the website for detailed info.
    Leader badge
    Downloads: 2 This Week
    Last Update:
    See Project
  • 17

    auto_firewall.sh

    shell program to automatically configure freebsd as a firewall

    This shell program automatically configures FreeBSD 9.1 and above as a firewall with only 2 answers from the user. The main goals of this program are minimal user input, ease of use and sensible security defaults. It's written for the sh shell included in FreeBSD by default.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 18
    ssh-utils

    ssh-utils

    Support Tools for OpenSSH with multiple agents

    ...Current contained tools: - ssh-agent-manage.sh The management of the parallel SSH access by multiple agents, sessions, and keys. - ssh-pk-type.sh Displays private key type. - ssh-pk-asn1.sh Displays the private key as ASN.1.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 19

    EasyShell

    Eclipse plugin that opens system console, file browser for selection

    = Project migrated to Git Hub: https://github.com/anb0s/EasyShell = EasyShell: opens shell window, runs selected file in the shell, opens explorer window (or nautilus / konqueror) and copies path. Update site: http://anb0s.github.io/EasyShell Eclipse Marketplace: http://marketplace.eclipse.org/content/easyshell
    Downloads: 0 This Week
    Last Update:
    See Project
  • 20

    dpkg_mini

    dpkg mini allot of dpkg in 2 page script (any linux)

    dpkg_mini is a very compact script that does some useful actions upon debian archive files. dpkg_mini [install remove skel implode explode control list depends check configure] file(s).deb [dir] works in any linux with ar(1) tar(1), dpkg is not required of course is not a substitute for dpkg(8). ie, install and skel work outside of and independantly from the dpkg system. however for checking out .deb or testing or avoiding force it's a neat little tool ! see man...
    Downloads: 0 This Week
    Last Update:
    See Project
  • 21
    XDM-OPTIONS Display Manager Suite

    XDM-OPTIONS Display Manager Suite

    XDM-OPTIONS Display Manager Suite

    X Display Manager. Xhost Phonebook, X Login, X Desktop Chooser, and XDM X server (vnc server). Easy install, Clean uninstall (and X up when done). Highly compatible, no libs. Like gdm but different in goals and features. Great as primary dm or as a backup dm. pre-requirements: X Windows. xdm(1) binary (package) if it was removed (xdm is part of traditional X)
    Downloads: 0 This Week
    Last Update:
    See Project
  • 22
    OpenSBE is a universal software building framework based on Autoconf, GNU Make, Perl and sh. The framework provides a build environment that is platform, language, and compiler independent.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 23

    MA Shell Initialisation

    BASH shell initialisation framework

    A BASH, SH and KSH (and maybe others) initialisation framework that enables your shell environment to handle logging on to different sites & operating systems and configure your environment and the different software installed at different sites etc.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 24
    Tom's Virtual Twm

    Tom's Virtual Twm

    small Viirtual Window Manager w/multihost panning deskops

    ...(X11 also supports each host runnign apps on the others' screen) (* also from: uwm, twm, swm, X11, contributors, possibly mostly so) notes: complicated m4 system feature is not currently working (linux) but automake configure makes the compile / install of this "classic Sun Site tarball" a breeze $ sh ./configure --with-xpm --with-shape $ make $ make install
    Downloads: 0 This Week
    Last Update:
    See Project
  • 25
    spl@sh

    spl@sh

    PHP Server Side Controls

    spl@sh is a standard extension for ALPHA CMS. spl@sh is a PHP based server side object oriented set of classes with which you can create and administer the most important HTML elements dynamically! spl@sh is to PHP as server side controls to ASP.net!
    Downloads: 0 This Week
    Last Update:
    See Project
  • Previous
  • You're on page 1
  • 2
  • 3
  • 4
  • Next
MongoDB Logo MongoDB