Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/shu223/csv2plist
Script to convert CSV file to plist file.
https://github.com/shu223/csv2plist
Last synced: 5 days ago
JSON representation
Script to convert CSV file to plist file.
- Host: GitHub
- URL: https://github.com/shu223/csv2plist
- Owner: shu223
- Created: 2011-05-11T07:05:44.000Z (over 13 years ago)
- Default Branch: master
- Last Pushed: 2020-03-28T22:32:36.000Z (over 4 years ago)
- Last Synced: 2024-05-01T20:40:23.796Z (7 months ago)
- Language: PHP
- Homepage: http://d.hatena.ne.jp/shu223/20110511/1305129443
- Size: 7.81 KB
- Stars: 11
- Watchers: 4
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
Awesome Lists containing this project
README
#csv2plist
Simple script to convert CSV file to plist file.
##Usage
````
$ php csv2plist.php hoge.csv
````When the CSV file has title row, use -t option.
````
$ php csv2plist.php -t hoge.csv
````##Example
(sample.csv)
````
id,name,age,birth
0,tsutsumi,32,5/26
1,sato,27,1/11
2,tanaka,21,11/3
````(command)
````
$ php csv2plist.php -t sample.csv
````(generated plist)
````
id
0
name
tsutsumi
age
32
birth
5/26
id
1
name
sato
age
27
birth
1/11
id
2
name
tanaka
age
21
birth
11/3
````
##License
MIT