1212 links
odea's Shaarli
Home
Login
RSS Feed
Tag cloud
Picture wall
Daily
Links per page:
20
50
100
page 1 / 1
5 results for tags
bash
x
Comment lire un fichier ligne par ligne
commande while read
while read line; do echo -e "$line\n"; done < file.txt
Wed 15 Jan 2014 04:10:52 PM CET - permalink
-
-
http://www.commentcamarche.net/faq/5027-comment-lire-un-fichier-ligne-par-ligne
bash
regex recherche d'URL
egrep -o 'http://?([^\/]+\.[^\/]+)' foo.bar
Mon 06 Jan 2014 09:06:32 AM CET - permalink
-
-
https://odea.fr/?TikAaQ
bash
rename.sh
#!/bin/bash
IFS=$'\n'
ls -1 "$1"|grep "-"|cut -f2 -d"/"|cut -f1 -d"-"|uniq > list.txt
for i in $(<list.txt)
do
read -p "creer "$1"/"$i" ?" RESPONSE
if [ "$RESPONSE" = "o" ];then
echo "---->mkdir "$1/$i" puis mv "$1/$i"-* "$1/$i/""
mkdir "$1/$i"
mv "$1/$i"-* "$1/$i/"
fi
done
Thu 24 Oct 2013 07:31:39 PM CEST - permalink
-
-
https://odea.fr/?2GRgBQ
bash
remplacer caractere sed rename
for i in OK-*;do mv $i `echo $i|sed 's/OK-//'`;done
Fri 04 Oct 2013 11:32:47 AM CEST - permalink
-
-
https://odea.fr/?XAFhrQ
bash
for rename
for i in 01 02 03 04 05 06 07 08 09 10 11 12 13 14 15 16 17 18 19 20;do mv E$i* "`basename "Lost - 05x$i"* .srt`".avi;done
oui je sais ya plus rapide/simple
Sun 01 Sep 2013 08:59:33 PM CEST - permalink
-
-
https://odea.fr/?qmzGfg
bash
Links per page:
20
50
100
page 1 / 1