Welcome!

Welcome to Satlover forums, full of great people, ideas and excitement.

Please register if you would like to take part. link..

Register Now

Alert: Don't Use Hotmail Email Accounts for registration

Collapse

Before Access to all Forums and Trial accounts you must need to activate your account Email address

Ubuntu 10.04 - Convert file format from windows to unix

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • uttnls
    • Nov 2024

    Ubuntu 10.04 - Convert file format from windows to unix

    On ubuntu 10.04 dos2unix and unix2dos are removed so you have to install this package :

    sudo apt-get install tofrodos

    Then you use this script to convert all files in specified path from dos to unix format

    convert2unix
    Code:
    #!/bin/bash
    PATH=$1
    RESULT=$(/usr/bin/find $PATH/ '!' -type d -exec /usr/bin/fromdos {} \;)
    sudo chmod 0755 convert2unix

    Usage : sudo convert2unix "/var/www"
Working...