Gnu utils for windows

Provide feedback

Saved searches

Use saved searches to filter your results more quickly

Sign up

Appearance settings


Unpacking Software Livestream

Join our monthly Unpacking Software livestream to hear about the latest news, chat and opinion on packaging, software deployment and lifecycle management!

Learn More


Chocolatey Product Spotlight

Join the Chocolatey Team on our regular monthly stream where we put a spotlight on the most recent Chocolatey product releases. You’ll have a chance to have your questions answered in a live Ask Me Anything format.

Learn More


Chocolatey Coding Livestream

Join us for the Chocolatey Coding Livestream, where members of our team dive into the heart of open source development by coding live on various Chocolatey projects. Tune in to witness real-time coding, ask questions, and gain insights into the world of package management. Don’t miss this opportunity to engage with our team and contribute to the future of Chocolatey!

Learn More


Calling All Chocolatiers! Whipping Up Windows Automation with Chocolatey Central Management

Webinar from
Wednesday, 17 January 2024

We are delighted to announce the release of Chocolatey Central Management v0.12.0, featuring seamless Deployment Plan creation, time-saving duplications, insightful Group Details, an upgraded Dashboard, bug fixes, user interface polishing, and refined documentation. As an added bonus we’ll have members of our Solutions Engineering team on-hand to dive into some interesting ways you can leverage the new features available!

Watch On-Demand


Chocolatey Community Coffee Break

Join the Chocolatey Team as we discuss all things Community, what we do, how you can get involved and answer your Chocolatey questions.

Watch The Replays


Chocolatey and Intune Overview

Webinar Replay from
Wednesday, 30 March 2022

At Chocolatey Software we strive for simple, and teaching others. Let us teach you just how simple it could be to keep your 3rd party applications updated across your devices, all with Intune!

Watch On-Demand


Chocolatey For Business. In Azure. In One Click.

Livestream from
Thursday, 9 June 2022

Join James and Josh to show you how you can get the Chocolatey For Business recommended infrastructure and workflow, created, in Azure, in around 20 minutes.

Watch On-Demand


The Future of Chocolatey CLI

Livestream from
Thursday, 04 August 2022

Join Paul and Gary to hear more about the plans for the Chocolatey CLI in the not so distant future. We’ll talk about some cool new features, long term asks from Customers and Community and how you can get involved!

Watch On-Demand


Hacktoberfest Tuesdays 2022

Livestreams from
October 2022

For Hacktoberfest, Chocolatey ran a livestream every Tuesday! Re-watch Cory, James, Gary, and Rain as they share knowledge on how to contribute to open-source projects such as Chocolatey CLI.

Watch On-Demand


Did you know that many Unix core programs are available as Windows executables? Because the code for these utilities is open source, there are a couple of different organizations that have taken the liberty of compiling them for the Windows platform and making them available. One such project is GnuWin32. If you want to, say, use common Unix text processing programs on Windows as part of your Hyperion automation, you definitely can. You would just install the programs on your server, probably add their folder to your system PATH, and then be able to call them like any other program.

Why would you want to do this? There are some really great programs available on Unix platforms that might be useful for some one-off processing you do as part of your automation. In the coming days I’m going to post a few examples of some interesting text processing examples you might do with these utilities that are inspired by Essbase/Hyperion. Of course, for those of you already running Linux/AIX, you should already be set (and of course, as a smug Mac user myself, I am good to go at least with my development machine…).

Another such project that otherwise makes Unix tools available on Windows is the Cygwin project, which you might want to check out too if you need to get this functionality on a Windows machine.

Gnu Utilities (GnuWin)are similar like opensource licence(Not missing your unix command line tools) provided with any standard 32-bits MS-Windows operating system, such as MS-Windows 95 / 98 / ME / NT / 2000 / XP / 2003 / Vista.

CoreUtils for Windows

File utilities:

* chgrp: Changes file group ownership.
* chown: Changes file ownership.
* chmod: Changes file permissions.
* cp: Copies files.
* dd: Copies and converts a file.
* df: Shows disk free space on filesystems.
* dir: Gives a brief directory listing.
* dircolors: Setup program for the color output of GNU ls.
* du: Shows disk usage on filesystems.
* install: Copies file and sets its permissions.
* ln: Creates file links.
* ls: Lists directory contents.
* mkdir: Creates directories.
* mkfifo: Creates FIFOs (named pipes).
* mknod: Creates special files.
* mv: Moves files.
* rm: Removes (deletes) files.
* rmdir: Removes empty directories.
* shred: Destroy data in files.
* sync: Synchronizes filesystem buffers and disk.
* touch: Changes file timestamps.
* vdir: Long directory listing.

Text utilities:

* cat: concatenates and prints files on the standard output
* cksum: checksum and count the bytes in a file
* comm: compares two sorted files line by line
* csplit: splits a file into sections determined by context lines
* cut: remove sections from each line of files
* expand: convert tabs to spaces
* fmt: simple optimal text formatter
* fold: wrap each input line to fit in specified width
* head: output the first part of files
* join: join lines of two files on a common field
* md5sum: compute and check MD5 messsage digest
* nl: number lines of files
* od: dump files in octal and other formats
* paste: merge lines of files
* ptx: produce a permuted index of file contents
* pr: convert text files for printing
* shasum: compute and check SHA1 message digest
* sort: sort lines of text files
* split: split a file into pieces
* sum: checksum and count the blocks in a file
* tac: concatenates and prints files in reverse
* tail: outputs the last part of files
* tr: translates or deletes characters
* tsort: perform topological sort
* unexpand: convert spaces to tabs
* uniq: remove duplicate lines from a sorted file
* wc: prints the number of bytes, words, and lines in files

Shell utilities:

* [ – Check file types and compare values
* basename – Removes the path prefix from a given pathname.
* chroot – Changes the root directory.
* date – Prints/sets the system date and time.
* dirname – Removes the last level or filename from a given pathname.
* echo – Prints a line of text.
* env – Displays/modifies the environment.
* expr – Evaluates expressions.
* factor – Prints prime factors.
* false – Returns an unsuccessful exit status.
* groups – Print the groups that the user is a member of.
* hostid – Print the numeric identifier for the current host
* hostname – Print or set the machine name.
* id – Print real/effective uid/gid.
* logname – Print current login name.
* nice – Modify scheduling priority.
* nohup – Allows a command to continue running after logging out.
* pathchk – Check file name portability.
* pinky – Lightweight finger
* printenv – Prints environment variables.
* printf – Formats and prints data.
* pwd – Print the current working directory.
* seq – Print numeric sequences.
* sleep – Suspends execution for a specified time.
* stty – Print/change terminal settings.
* su – Allows you to adopt the id of another user or superuser.
* tee – Sends output to multiple files.
* test – Evaluates an expression.
* true – Returns a successful exit status.
* tty – Print terminal name.
* uname – Print system information.
* users – Print current user names.
* who – Print a list of all users currently logged in.
* whoami – Print effective user id.
* yes – Print a string repeatedly.

Refferences:
http://www.gnu.org/software/coreutils
http://unxutils.sourceforge.net/
http://lifehacker.com/354014/get-gnu-tools-on-windows-with-unixutils
http://www.mingw.org/
http://irsoft.de/web/Win32GNUtils
http://www.ltr-data.se/opencode.html/

This is the Windows app named gnu-utils whose latest release can be downloaded as gnulib.zip. It can be run online in the free hosting provider OnWorks for workstations.

Download and run online this app named gnu-utils with OnWorks for free.

Follow these instructions in order to run this app:

— 1. Downloaded this application in your PC.

— 2. Enter in our file manager https://www.onworks.net/myfiles.php?username=XXXXX with the username that you want.

— 3. Upload this application in such filemanager.

— 4. Start any OS OnWorks online emulator from this website, but better Windows online emulator.

— 5. From the OnWorks Windows OS you have just started, goto our file manager https://www.onworks.net/myfiles.php?username=XXXXX with the username that you want.

— 6. Download the application and install it.

— 7. Download Wine from your Linux distributions software repositories. Once installed, you can then double-click the app to run them with Wine. You can also try PlayOnLinux, a fancy interface over Wine that will help you install popular Windows programs and games.

Wine is a way to run Windows software on Linux, but with no Windows required. Wine is an open-source Windows compatibility layer that can run Windows programs directly on any Linux desktop. Essentially, Wine is trying to re-implement enough of Windows from scratch so that it can run all those Windows applications without actually needing Windows.

gnu-utils

DESCRIPTION

This project contains the old versions of rsync, GNU tar and OpenReports if anybody still wants to use the old versions. Even though the sources are available for the old versions, the compiled binaries are not available always and this project maintains the old versions of the binaries for your use

This is an application that can also be fetched from https://sourceforge.net/projects/gnu-utils/. It has been hosted in OnWorks in order to be run online in an easiest way from one of our free Operative Systems.

Download Windows & Linux apps

  • Linux apps
  • Windows apps
  • 1

    Firebird
    Firebird RDBMS offers ANSI SQL features
    & runs on Linux, Windows &
    several Unix platforms. Features
    excellent concurrency & performance
    & power…
    Download Firebird
  • 2

    KompoZer
    KompoZer is a wysiwyg HTML editor using
    the Mozilla Composer codebase. As
    Nvu’s development has been stopped
    in 2005, KompoZer fixes many bugs and
    adds a f…
    Download KompoZer
  • 3

    Free Manga Downloader
    The Free Manga Downloader (FMD) is an
    open source application written in
    Object-Pascal for managing and
    downloading manga from various websites.
    This is a mirr…
    Download Free Manga Downloader
  • 4

    UNetbootin
    UNetbootin allows you to create bootable
    Live USB drives for Ubuntu, Fedora, and
    other Linux distributions without
    burning a CD. It runs on Windows, Linux,
    and …
    Download UNetbootin
  • 5

    Dolibarr ERP — CRM
    Dolibarr ERP — CRM is an easy to use
    ERP and CRM open source software package
    (run with a web php server or as
    standalone software) for businesses,
    foundations…
    Download Dolibarr ERP — CRM
  • 6

    SQuirreL SQL Client
    SQuirreL SQL Client is a graphical SQL
    client written in Java that will allow
    you to view the structure of a JDBC
    compliant database, browse the data in
    tables…
    Download SQuirreL SQL Client
  • More »

Linux commands

  • 1

    aarch64-linux-gnu-size
    size — list section sizes and total
    size. …
    Run aarch64-linux-gnu-size
  • 2

    aarch64-linux-gnu-strings
    strings — print the strings of
    printable characters in files. …
    Run aarch64-linux-gnu-strings
  • 3

    crashlistout
    crashlistout — List the mail files
    waiting to go out in the specified
    directory. …
    Run crashlistout
  • 4

    crashmail
    crashmail — A Fidonet *.JAM and MSG
    tosser …
    Run crashmail
  • 5

    gazebo
    gazebo — Run the Gazebo server and GUI.
    Run gazebo
  • 6

    gba3
    gba3 — GAMBAS Archiver …
    Run gba3
  • More »

Понравилась статья? Поделить с друзьями:
0 0 голоса
Рейтинг статьи
Подписаться
Уведомить о
guest

0 комментариев
Старые
Новые Популярные
Межтекстовые Отзывы
Посмотреть все комментарии
  • Пропал басс в наушниках windows 10
  • Astra linux сетевой принтер windows
  • Windows 10 manager репак
  • Готовые темы для windows 10
  • Запуск windows программ на ipad